summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/locationdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:44:41 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:44:41 +0000
commita374efce3a207b39514be3c52264091400ce297e (patch)
tree77bdf654b55826d4f59b53a5621310206bcaead1 /kstars/kstars/locationdialog.h
parentf81a494f3957d5cf38c787973415597941934727 (diff)
downloadtdeedu-a374efce3a207b39514be3c52264091400ce297e.tar.gz
tdeedu-a374efce3a207b39514be3c52264091400ce297e.zip
TQt4 port kdeedu
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1236073 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kstars/kstars/locationdialog.h')
-rw-r--r--kstars/kstars/locationdialog.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/kstars/kstars/locationdialog.h b/kstars/kstars/locationdialog.h
index 23831361..995f7f13 100644
--- a/kstars/kstars/locationdialog.h
+++ b/kstars/kstars/locationdialog.h
@@ -24,7 +24,7 @@
*
*The top section allows the location to be selected from a database
*of 2000 cities. It contains a MapCanvas (showing map of the globe
- *with cities overlaid, with a handler for mouse clicks), a QListBox
+ *with cities overlaid, with a handler for mouse clicks), a TQListBox
*containing the names of cities in the database, and three KLineEdit
*widgets, which allow the user to filter the List by the name of the
*City, Province, and Country. In addition, the List
@@ -58,13 +58,14 @@ class dmsBox;
class LocationDialog : public KDialogBase {
Q_OBJECT
+ TQ_OBJECT
public:
/**
- *Constructor. Create all widgets, and pack them into QLayouts.
+ *Constructor. Create all widgets, and pack them into TQLayouts.
*Connect Signals to Slots. Run initCityList().
*/
- LocationDialog( TQWidget* parent = 0 );
+ LocationDialog( TQWidget* tqparent = 0 );
/**
*Destructor (empty)
*/
@@ -72,7 +73,7 @@ public:
/**
*Initialize list of cities. Note that the database is not read in here,
- *that is done in the KStars constructor. This simply loads the local QListBox
+ *that is done in the KStars constructor. This simply loads the local TQListBox
*with the names of the cities from the kstarsData object.
*/
void initCityList( void );
@@ -116,7 +117,7 @@ public slots:
void filterCity( void );
/**
- *When the selected city in the TQListBox changes, repaint the MapCanvas
+ *When the selected city in the TQListBox changes, tqrepaint the MapCanvas
*so that the crosshairs icon appears on the newly selected city.
*/
void changeCity( void );