summaryrefslogtreecommitdiffstats
path: root/libkscan/devselector.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-20 18:14:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-20 18:14:05 -0600
commit19c822c41d0644be3f2bed9ddb86b5f996c0d023 (patch)
treed6e9e16f525755940ea0af5b3fc90e980f1be5ec /libkscan/devselector.cpp
parent2e433f9dc4a5b8b979662f80cae2903a4496f7a3 (diff)
downloadtdegraphics-19c822c41d0644be3f2bed9ddb86b5f996c0d023.tar.gz
tdegraphics-19c822c41d0644be3f2bed9ddb86b5f996c0d023.zip
Fix Q_CHECK_PTR
Diffstat (limited to 'libkscan/devselector.cpp')
-rw-r--r--libkscan/devselector.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libkscan/devselector.cpp b/libkscan/devselector.cpp
index 23aa5e0e..00d17c06 100644
--- a/libkscan/devselector.cpp
+++ b/libkscan/devselector.cpp
@@ -49,19 +49,19 @@ DeviceSelector::DeviceSelector( TQWidget *parent, TQStrList& devList,
kdDebug(29000) << "Starting DevSelector!" << endl;
// Layout-Boxes
TQWidget *page = new TQWidget( this );
- Q_CHECK_PTR( page );
+ TQ_CHECK_PTR( page );
setMainWidget( page );
TQVBoxLayout *topLayout = new TQVBoxLayout( page, marginHint(), spacingHint() );
TQLabel *label = new TQLabel( page, "captionImage" );
- Q_CHECK_PTR( label );
+ TQ_CHECK_PTR( label );
label->setPixmap( TQPixmap( TQString("kookalogo.png") ));
label->resize( 100, 350 );
topLayout->addWidget( label );
selectBox = new TQButtonGroup( 1,Qt::Horizontal, i18n( "Select Scan Device" ),
page, "ButtonBox");
- Q_CHECK_PTR( selectBox );
+ TQ_CHECK_PTR( selectBox );
selectBox->setExclusive( true );
topLayout->addWidget( selectBox );
setScanSources( devList, hrdevList );