summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/gpssync/gpseditdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/gpssync/gpseditdialog.cpp')
-rw-r--r--kipi-plugins/gpssync/gpseditdialog.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/kipi-plugins/gpssync/gpseditdialog.cpp b/kipi-plugins/gpssync/gpseditdialog.cpp
index 0848e07..bc801e1 100644
--- a/kipi-plugins/gpssync/gpseditdialog.cpp
+++ b/kipi-plugins/gpssync/gpseditdialog.cpp
@@ -153,39 +153,39 @@ GPSEditDialog::GPSEditDialog(TQWidget* parent, const GPSDataContainer& gpsData,
KHelpMenu* helpMenu = new KHelpMenu(this, d->about, false);
helpMenu->menu()->removeItemAt(0);
helpMenu->menu()->insertItem(i18n("Plugin Handbook"),
- this, TQT_SLOT(slotHelp()), 0, -1, 0);
+ this, TQ_SLOT(slotHelp()), 0, -1, 0);
actionButton(Help)->setPopup( helpMenu->menu() );
// ---------------------------------------------------------------
- connect(altResetButton, TQT_SIGNAL(released()),
- d->altitudeInput, TQT_SLOT(clear()));
+ connect(altResetButton, TQ_SIGNAL(released()),
+ d->altitudeInput, TQ_SLOT(clear()));
- connect(latResetButton, TQT_SIGNAL(released()),
- d->latitudeInput, TQT_SLOT(clear()));
+ connect(latResetButton, TQ_SIGNAL(released()),
+ d->latitudeInput, TQ_SLOT(clear()));
- connect(lonResetButton, TQT_SIGNAL(released()),
- d->longitudeInput, TQT_SLOT(clear()));
+ connect(lonResetButton, TQ_SIGNAL(released()),
+ d->longitudeInput, TQ_SLOT(clear()));
- connect(d->altitudeInput, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(slotGPSPositionChanged()));
+ connect(d->altitudeInput, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(slotGPSPositionChanged()));
- connect(d->latitudeInput, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(slotGPSPositionChanged()));
+ connect(d->latitudeInput, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(slotGPSPositionChanged()));
- connect(d->longitudeInput, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(slotGPSPositionChanged()));
+ connect(d->longitudeInput, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(slotGPSPositionChanged()));
- connect(d->worldMap, TQT_SIGNAL(signalNewGPSLocationFromMap(const TQString&, const TQString&, const TQString&)),
- this, TQT_SLOT(slotNewGPSLocationFromMap(const TQString&, const TQString&, const TQString&)));
+ connect(d->worldMap, TQ_SIGNAL(signalNewGPSLocationFromMap(const TQString&, const TQString&, const TQString&)),
+ this, TQ_SLOT(slotNewGPSLocationFromMap(const TQString&, const TQString&, const TQString&)));
- connect(d->goButton, TQT_SIGNAL(released()),
- this, TQT_SLOT(slotGotoLocation()));
+ connect(d->goButton, TQ_SIGNAL(released()),
+ this, TQ_SLOT(slotGotoLocation()));
// ---------------------------------------------------------------
readSettings();
- TQTimer::singleShot(0, this, TQT_SLOT(slotUpdateWorldMap()));
+ TQTimer::singleShot(0, this, TQ_SLOT(slotUpdateWorldMap()));
}
GPSEditDialog::~GPSEditDialog()