(gdb) backtrace
#0 0xffffe410 in __kernel_vsyscall ()
#1 0xb720a770 in raise () from /lib/tls/i686/cmov/libc.so.6
#2 0xb720bef3 in abort () from /lib/tls/i686/cmov/libc.so.6
#3 0xb723fd0b in __fsetlocking () from /lib/tls/i686/cmov/libc.so.6
#4 0xb72478bd in mallopt () from /lib/tls/i686/cmov/libc.so.6
#5 0xb7247a44 in free () from /lib/tls/i686/cmov/libc.so.6
#6 0xb7536e5d in QHashData::freeNode (this=0x8112498, node=0x8124af8)
at tools/qhash.cpp:132
#7 0xb7991abd in QHash<unsigned long, QWidget*>::remove (this=0x8108d30,
akey=@0x812498c)
at ../../include/QtCore/../../src/corelib/tools/qhash.h:450
#8 0xb7982eff in QWidgetPrivate::setWinId (this=0x8124950, id=0)
at kernel/qwidget.cpp:1180
#9 0xb79b8dcc in QWidget::destroy (this=0x81248b8, destroyWindow=true,
destroySubWindows=true) at kernel/qwidget_x11.cpp:782
#10 0xb798866c in ~QWidget (this=0x81248b8) at kernel/qwidget.cpp:1162
#11 0xb7bd7ef1 in ~QAbstractButton (this=0x81248b8)
at widgets/qabstractbutton.cpp:572
#12 0xb7c846e5 in ~QToolButton (this=0x81248b8) at widgets/qtoolbutton.cpp:347
#13 0xb75d4ea1 in QObjectPrivate::deleteChildren (this=0x8123978)
at kernel/qobject.cpp:1823
#14 0xb7988649 in ~QWidget (this=0x8123938) at kernel/qwidget.cpp:1158
#15 0xb7c7e844 in ~QToolBar (this=0x8123938) at widgets/qtoolbar.cpp:472
---Type <return> to continue, or q <return> to quit---
#16 0xb75d4ea1 in QObjectPrivate::deleteChildren (this=0x810b300)
at kernel/qobject.cpp:1823
#17 0xb7988649 in ~QWidget (this=0xbf85ebf0) at kernel/qwidget.cpp:1158
#18 0xb7c30c21 in ~QMainWindow (this=0xbf85ebf0) at widgets/qmainwindow.cpp:292
#19 0x080527ca in main ()
(gdb) backtrace
#0 0xffffe410 in __kernel_vsyscall ()
#1 0xb720a770 in raise () from /lib/tls/i686/cmov/libc.so.6
#2 0xb720bef3 in abort () from /lib/tls/i686/cmov/libc.so.6
#3 0xb723fd0b in __fsetlocking () from /lib/tls/i686/cmov/libc.so.6
#4 0xb72478bd in mallopt () from /lib/tls/i686/cmov/libc.so.6
#5 0xb7247a44 in free () from /lib/tls/i686/cmov/libc.so.6
#6 0xb7536e5d in QHashData::freeNode (this=0x8112498, node=0x8124af8)
at tools/qhash.cpp:132
#7 0xb7991abd in QHash<unsigned long, QWidget*>::remove (this=0x8108d30,
akey=@0x812498c)
at ../../include/QtCore/../../src/corelib/tools/qhash.h:450
#8 0xb7982eff in QWidgetPrivate::setWinId (this=0x8124950, id=0)
at kernel/qwidget.cpp:1180
#9 0xb79b8dcc in QWidget::destroy (this=0x81248b8, destroyWindow=true,
destroySubWindows=true) at kernel/qwidget_x11.cpp:782
#10 0xb798866c in ~QWidget (this=0x81248b8) at kernel/qwidget.cpp:1162
#11 0xb7bd7ef1 in ~QAbstractButton (this=0x81248b8)
at widgets/qabstractbutton.cpp:572
#12 0xb7c846e5 in ~QToolButton (this=0x81248b8) at widgets/qtoolbutton.cpp:347
#13 0xb75d4ea1 in QObjectPrivate::deleteChildren (this=0x8123978)
at kernel/qobject.cpp:1823
#14 0xb7988649 in ~QWidget (this=0x8123938) at kernel/qwidget.cpp:1158
#15 0xb7c7e844 in ~QToolBar (this=0x8123938) at widgets/qtoolbar.cpp:472
---Type <return> to continue, or q <return> to quit---
#16 0xb75d4ea1 in QObjectPrivate::deleteChildren (this=0x810b300)
at kernel/qobject.cpp:1823
#17 0xb7988649 in ~QWidget (this=0xbf85ebf0) at kernel/qwidget.cpp:1158
#18 0xb7c30c21 in ~QMainWindow (this=0xbf85ebf0) at widgets/qmainwindow.cpp:292
#19 0x080527ca in main ()
To copy to clipboard, switch view to plain text mode
label
= new QLabel(tr
("Enter a character string below"));
checkOne
= new QCheckBox(tr
("Case Sensitive"));
checkOne->setChecked(true);
caseSensitive = true;
connect(checkOne,SIGNAL(toggled(bool)),this,SLOT(setCaseSensitive(bool)));
connect(qcb,SIGNAL(currentIndexChanged(int)),le,SLOT(clear()));
connect(qcb,SIGNAL(currentIndexChanged(int)),qtv,SLOT(filter()));
connect(le,
SIGNAL(textChanged
(const QString &)),qtv,
SLOT(filter
()));
connect(model,SIGNAL(fromTVtoVM(int)),this,SIGNAL(doubleClickInTreeView(int)));
qvb->addWidget(label,0,0,1,2);
qvb->addWidget(le,1,0);
qvb->addWidget(checkOne,1,1);
qvb->addWidget(qcb,2,0,1,2);
qvb->addWidget(qtv,3,0,1,2);
setLayout(qvb);
label = new QLabel(tr("Enter a character string below"));
checkOne = new QCheckBox(tr("Case Sensitive"));
checkOne->setChecked(true);
caseSensitive = true;
qvb = new QGridLayout();
connect(checkOne,SIGNAL(toggled(bool)),this,SLOT(setCaseSensitive(bool)));
connect(qcb,SIGNAL(currentIndexChanged(int)),le,SLOT(clear()));
connect(qcb,SIGNAL(currentIndexChanged(int)),qtv,SLOT(filter()));
connect(le,SIGNAL(textChanged(const QString &)),qtv,SLOT(filter()));
connect(model,SIGNAL(fromTVtoVM(int)),this,SIGNAL(doubleClickInTreeView(int)));
qvb->addWidget(label,0,0,1,2);
qvb->addWidget(le,1,0);
qvb->addWidget(checkOne,1,1);
qvb->addWidget(qcb,2,0,1,2);
qvb->addWidget(qtv,3,0,1,2);
setLayout(qvb);
To copy to clipboard, switch view to plain text mode
Bookmarks