summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/addcatdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kstars/kstars/addcatdialog.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kstars/kstars/addcatdialog.h')
-rw-r--r--kstars/kstars/addcatdialog.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kstars/kstars/addcatdialog.h b/kstars/kstars/addcatdialog.h
index 46b108ba..be839181 100644
--- a/kstars/kstars/addcatdialog.h
+++ b/kstars/kstars/addcatdialog.h
@@ -18,8 +18,8 @@
#ifndef ADDCATDIALOG_H
#define ADDCATDIALOG_H
-#include <qglobal.h>
-#include <qptrlist.h>
+#include <tqglobal.h>
+#include <tqptrlist.h>
#include <kdialogbase.h>
#include <klineedit.h>
@@ -39,7 +39,7 @@ class AddCatDialog : public KDialogBase {
public:
/**Default constructor
*/
- AddCatDialog( QWidget *parent=0 );
+ AddCatDialog( TQWidget *parent=0 );
/**Destructor (empty)
*/
@@ -47,11 +47,11 @@ public:
/**@return the name for the custom catalog.
*/
- QString name() const { return acd->CatalogName->text(); }
+ TQString name() const { return acd->CatalogName->text(); }
/**@return the filename of the custom catalog.
*/
- QString filename() const { return acd->CatalogURL->url(); }
+ TQString filename() const { return acd->CatalogURL->url(); }
private slots:
/**Display contents of the import file.
@@ -86,11 +86,11 @@ private:
/**Write a header line describing the data fields in the catalog, and
*defining the catalog name, ID prefix, and coordinate epoch.
*/
- QString writeCatalogHeader();
+ TQString writeCatalogHeader();
- QVBoxLayout *vlay;
+ TQVBoxLayout *vlay;
AddCatDialogUI *acd;
- QString CatalogContents;
+ TQString CatalogContents;
};
#endif