diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:23:37 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:23:37 -0600 |
commit | 251c4d87e52794911ea960530258703584dfd93a (patch) | |
tree | 52bc7638a0dad40e8f7005f575d3679ad5e5c20c /kweather/kcmweatherservice.cpp | |
parent | 59a076e9336f1eebda8650437e6bc61077be1516 (diff) | |
download | tdetoys-251c4d87e52794911ea960530258703584dfd93a.tar.gz tdetoys-251c4d87e52794911ea960530258703584dfd93a.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'kweather/kcmweatherservice.cpp')
-rw-r--r-- | kweather/kcmweatherservice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kweather/kcmweatherservice.cpp b/kweather/kcmweatherservice.cpp index db8325d..49bf792 100644 --- a/kweather/kcmweatherservice.cpp +++ b/kweather/kcmweatherservice.cpp @@ -41,13 +41,13 @@ extern "C" KCMWeatherService::KCMWeatherService( TQWidget *parent, const char *name ) : KCModule( parent, name ) { - TQVBoxLayout *tqlayout = new TQVBoxLayout( this ); + TQVBoxLayout *layout = new TQVBoxLayout( this ); mWidget = new ServiceConfigWidget( this ); // not needed, as a change immediately changes the service //connect(mWidget, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); - tqlayout->addWidget( mWidget ); + layout->addWidget( mWidget ); KAboutData *about = new KAboutData( "kcmweatherservice", I18N_NOOP( "KWeather Configure Dialog" ), 0, 0, KAboutData::License_GPL, |