메시지 박스 질문 드립니다.

paeksj98의 이미지

아래 같단한 파일을 컴파일 하는데 에러가 나네요.
include에 qmessagebox를 인클루드 시켰는데...
선언이 안되었다고 자꾸나오네요..
여기 저기 디져봐두 저렇게만 했던데..혹시 이유좀 알수 있을까요..

#include "makelog.h"
#include qapplication.h>
#include qmessagebox.h>

void Makelog::fLogStart()
{

qDebug("=start======================================================");
QMessageBox::message(tr("My App"), tr("All occurrences replaced."),
tr("Close"), this);


}

void Makelog::fLogEnd()
{
qDebug("=end======================================================");
QMessageBox::information(this, tr("My App"),
tr("All occurrences replaced."),
QMessageBox::Close);
}