Извините
Наверно не то сказал. Построение проходит норм, а когда начинаю отладку Debug
Вот пример
main.cpp
C++ (Qt)
#include <QtGui/QApplication>
#include <QLabel>
#include "test.h"
#include <QHBoxLayout>
#include <QSlider>
#include <QSpinbox>
int main(int argc,char *argv[])
{
QApplication app(argc, argv);
QWidget *window = new QWidget;
window->setWindowTitle("Enter your age");
QSpinBox *spinBox = new QSpinBox;
QSlider *slider = new QSlider(Qt::Horizontal);
spinBox ->setRange(0, 100);
slider ->setRange(0, 100);
QObject::connect(spinBox, SIGNAL(valueChanged(int)),
slider, SLOT(setValue(int)));
QObject::connect(slider, SIGNAL(valueChanged(int)),
spinBox, SLOT(setValue(int)));
spinBox ->setValue(34);
QHBoxLayout *layout = new QHBoxLayout;
layout->addWidget(spinBox);
layout->addWidget(slider);
window->setLayout(layout);
window->show();
return app.exec();
}
А вот ход отладки
"test.exe": Загружено: "C:\Documents and Settings\ILLu$ioNi$T\Мои документы\Visual Studio 2008\Projects\test\Debug\test.exe", Символы загружены.
"test.exe": Загружено "C:\WINDOWS\system32\ntdll.dll"
"test.exe": Загружено "C:\WINDOWS\system32\kernel32.dll"
"test.exe": Загружено: "C:\Qt\4.4.3\bin\QtCored4.dll", Символы загружены.
"test.exe": Загружено "C:\WINDOWS\system32\user32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\gdi32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\ole32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\advapi32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\rpcrt4.dll"
"test.exe": Загружено "C:\WINDOWS\system32\secur32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\msvcrt.dll"
"test.exe": Загружено "C:\WINDOWS\system32\ws2_32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\ws2help.dll"
"test.exe": Загружено: "C:\WINDOWS\WinSxS\x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456\msvcp90d.dll", Символы загружены.
"test.exe": Загружено: "C:\WINDOWS\WinSxS\x86_Microsoft.VC90.DebugCRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_597c3456\msvcr90d.dll", Символы загружены.
"test.exe": Загружено: "C:\Qt\4.4.3\bin\QtGuid4.dll", Символы загружены.
"test.exe": Загружено "C:\WINDOWS\system32\comdlg32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\comctl32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\shell32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\shlwapi.dll"
"test.exe": Загружено "C:\WINDOWS\system32\oleaut32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\imm32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\winmm.dll"
"test.exe": Загружено "C:\WINDOWS\system32\winspool.drv"
"test.exe": Загружено: "C:\WINDOWS\system32\ice_time.dll", Двоичный код не был построен с отладочной информацией.
Первый этап обработки исключения в "0x7c90e4df" в "test.exe": 0xC0000008: An invalid handle was specified.
"test.exe": Загружено "C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\comctl32.dll"
"test.exe": Загружено "C:\WINDOWS\system32\uxtheme.dll"
"test.exe": Загружено "C:\WINDOWS\system32\MSCTF.dll"
"test.exe": Загружено "C:\WINDOWS\system32\version.dll"
"test.exe": Выгружено: "C:\WINDOWS\system32\version.dll"
"test.exe": Загружено "C:\WINDOWS\system32\MSCTFIME.IME"
"test.exe": Загружено "C:\WINDOWS\system32\CTAGENT.DLL"