summaryrefslogtreecommitdiffstats
path: root/libkscan/scansourcedialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /libkscan/scansourcedialog.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkscan/scansourcedialog.h')
-rw-r--r--libkscan/scansourcedialog.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/libkscan/scansourcedialog.h b/libkscan/scansourcedialog.h
index 3379843f..61ae4a6e 100644
--- a/libkscan/scansourcedialog.h
+++ b/libkscan/scansourcedialog.h
@@ -19,10 +19,10 @@
#ifndef SCANSOURCEDIALOG_H
#define SCANSOURCEDIALOG_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include <kdialogbase.h>
-#include <qstrlist.h>
-#include <qstring.h>
+#include <tqstrlist.h>
+#include <tqstring.h>
/**
*@author Klaas Freitag
@@ -31,18 +31,18 @@
typedef enum { ADF_OFF, ADF_SCAN_ALONG, ADF_SCAN_ONCE } ADF_BEHAVE;
class KScanCombo;
-class QRadioButton;
-class QButtonGroup;
+class TQRadioButton;
+class TQButtonGroup;
class ScanSourceDialog : public KDialogBase
{
Q_OBJECT
public:
- ScanSourceDialog( QWidget *parent, const QStrList, ADF_BEHAVE );
+ ScanSourceDialog( TQWidget *parent, const TQStrList, ADF_BEHAVE );
~ScanSourceDialog();
- // void fillWithSources( QStrList *list );
- QString getText( void ) const;
+ // void fillWithSources( TQStrList *list );
+ TQString getText( void ) const;
ADF_BEHAVE getAdfBehave( void ) const
{ return( adf ); }
@@ -52,13 +52,13 @@ public slots:
void slNotifyADF( int );
void slChangeSource( int );
int sourceAdfEntry( void ) const;
- void slSetSource( const QString source );
+ void slSetSource( const TQString source );
private:
KScanCombo *sources;
- QButtonGroup *bgroup;
- QRadioButton *rb0, *rb1;
+ TQButtonGroup *bgroup;
+ TQRadioButton *rb0, *rb1;
ADF_BEHAVE adf;
bool adf_enabled;