Setup: Dev-C++ 4.9.9.2 & Qt 4.3.2 on Windows 2000 SP4
Used these sites to help me set up QT & Dev: http://darkhack.googlepages.com/qttutorial ; http://www2.norwich.edu/mfenner/SE/f...-qt-notes.html

Exact tutorial version: http://doc.trolltech.com/4.3/tutorial-t7.html

When I go to compile I get this lovely message:
[Linker error] undefined reference to `vtable for LCDRange'
[Linker error] undefined reference to `vtable for LCDRange'
[Linker error] undefined reference to `vtable for LCDRange'
[Linker error] undefined reference to `vtable for LCDRange'
ld returned 1 exit status
C:\is301\qt\ch7\Makefile.win [Build Error] [tutch7.exe] Error 1
My Compiler output looks like this:
Compiler: Default compiler
Building Makefile: "C:\is301\qt\ch7\Makefile.win"
Executing make clean
rm -f main.o lcdrange.o tutch7_private.res tutch7.exe
g++.exe -c main.cpp -o main.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include" -O2 -O2 -frtti -fexceptions -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"C:\Qt\4.3.2\include\QtGui" -I"C:\Qt\4.3.2\include\QtCore" -I"C:\Qt\4.3.2\include" -I"." -I"C:\Qt\4.3.2\include\ActiveQt" -I"tmp\moc\release_shared" -I"." -I"C:\Qt\4.3.2\mkspecs\win32-g++"
g++.exe -c lcdrange.cpp -o lcdrange.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include" -O2 -O2 -frtti -fexceptions -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"C:\Qt\4.3.2\include\QtGui" -I"C:\Qt\4.3.2\include\QtCore" -I"C:\Qt\4.3.2\include" -I"." -I"C:\Qt\4.3.2\include\ActiveQt" -I"tmp\moc\release_shared" -I"." -I"C:\Qt\4.3.2\mkspecs\win32-g++"
windres.exe -i tutch7_private.rc --input-format=rc -o tutch7_private.res -O coff
g++.exe main.o lcdrange.o tutch7_private.res -o "tutch7.exe" -L"C:/Dev-Cpp/lib" -mthreads -Wl,-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-s -Wl,-s -Wl,-subsystem,windows -L"C:/Qt/4.3.2/lib" -L"C:/Qt/4.3.2/bin" -lmingw32 -lqtmain -lQtCore4 -lQtGui4
lcdrange.o(.text+0x69):lcdrange.cpp: undefined reference to `vtable for LCDRange'
lcdrange.o(.text+0x70):lcdrange.cpp: undefined reference to `vtable for LCDRange'
lcdrange.o(.text+0x309):lcdrange.cpp: undefined reference to `vtable for LCDRange'
lcdrange.o(.text+0x310):lcdrange.cpp: undefined reference to `vtable for LCDRange'
collect2: ld returned 1 exit status
make.exe: *** [tutch7.exe] Error 1
Execution terminated
If I try to manually compile I run into a different problem:
Microsoft Windows 2000 [Version 5.00.2195]
(C) Copyright 1985-2000 Microsoft Corp.

C:\is301\qt\ch7>PATH=C:\Dev-Cpp\bin;C:\Qt\4.3.2\bin

C:\is301\qt\ch7>qmake -project

C:\is301\qt\ch7>qmake

C:\is301\qt\ch7>make
make -f Makefile.Release
make[1]: Entering directory `C:/is301/qt/ch7'
make[1]: Nothing to be done for `first'.
make[1]: Leaving directory `C:/is301/qt/ch7'

C:\is301\qt\ch7>
Tried to do what was suggested here (http://www.qtcentre.org/forum/archiv...php/t-567.html) but the errors just got uglier.

Any ideas?