Could you post main.cpp and .pro file?
Could you post main.cpp and .pro file?
Here they are:
#include <qapplication.h>
#include "NTStoLatLong.h"
int main( int argc, char ** argv )
{
QApplication a( argc, argv );
calcLatLongdialog w;
w.show();
a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
return a.exec();
}
TEMPLATE = app
LANGUAGE = C++
CONFIG += qt warn_on release
SOURCES += main.cpp
FORMS = NTStoLatLong.ui
unix {
UI_DIR = .ui
MOC_DIR = .moc
OBJECTS_DIR = .obj
}
Everything seems to be OK here.
Are you sure that your widget is called "calcLatLongdialog"? Maybe it's "calcLatLongDialog"?
Bookmarks