summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/propertiesdialog.h
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2013-07-31 17:02:11 +0200
committerSlávek Banko <[email protected]>2013-07-31 17:02:11 +0200
commit5f9410ae910e73f8966318d1e1b9be03a5651118 (patch)
treed46a2a2135dbed62dc978bed61ede6376263463b /krecipes/src/dialogs/propertiesdialog.h
parent40d6261f7d30d372f6a0c9ffdd9fe1cd5b1d1002 (diff)
downloadkrecipes-5f9410ae910e73f8966318d1e1b9be03a5651118.tar.gz
krecipes-5f9410ae910e73f8966318d1e1b9be03a5651118.zip
Initial TQt conversion
Diffstat (limited to 'krecipes/src/dialogs/propertiesdialog.h')
-rw-r--r--krecipes/src/dialogs/propertiesdialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/krecipes/src/dialogs/propertiesdialog.h b/krecipes/src/dialogs/propertiesdialog.h
index d197154..77638d3 100644
--- a/krecipes/src/dialogs/propertiesdialog.h
+++ b/krecipes/src/dialogs/propertiesdialog.h
@@ -13,9 +13,9 @@
#ifndef PROPERTIESDIALOG_H
#define PROPERTIESDIALOG_H
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <qvbox.h>
+#include <ntqlayout.h>
+#include <ntqpushbutton.h>
+#include <ntqvbox.h>
#include <klistview.h>
class RecipeDB;
@@ -24,11 +24,11 @@ class StdPropertyListView;
/**
@author Unai Garro
*/
-class PropertiesDialog: public QWidget
+class PropertiesDialog: public TQWidget
{
Q_OBJECT
public:
- PropertiesDialog( QWidget *parent, RecipeDB *db );
+ PropertiesDialog( TQWidget *parent, RecipeDB *db );
~PropertiesDialog();
void reload( void );
@@ -37,9 +37,9 @@ private:
RecipeDB *database;
// Widgets
- QGridLayout* layout;
- QPushButton* addPropertyButton;
- QPushButton* removePropertyButton;
+ TQGridLayout* layout;
+ TQPushButton* addPropertyButton;
+ TQPushButton* removePropertyButton;
StdPropertyListView* propertyListView;
};