diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:50:42 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:50:42 -0600 |
commit | 6cdf35ab11c322f33feca5baf090ef56068b6049 (patch) | |
tree | ca493b21887096329578b1c02530fd4ca9388cfc /kweather/weatherbutton.cpp | |
parent | 44b2e94b380d4e5ec1539874823ffc06f05515cb (diff) | |
download | tdetoys-6cdf35ab11c322f33feca5baf090ef56068b6049.tar.gz tdetoys-6cdf35ab11c322f33feca5baf090ef56068b6049.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kweather/weatherbutton.cpp')
-rw-r--r-- | kweather/weatherbutton.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kweather/weatherbutton.cpp b/kweather/weatherbutton.cpp index ceb4360..ee88962 100644 --- a/kweather/weatherbutton.cpp +++ b/kweather/weatherbutton.cpp @@ -124,14 +124,14 @@ void WeatherButton::slotIconChanged( int group ) return; generateIcons(); - tqrepaint( false ); + repaint( false ); } void WeatherButton::enterEvent( TQEvent *e ) { m_highlight = true; - tqrepaint( false ); + repaint( false ); TQButton::enterEvent( e ); } @@ -139,7 +139,7 @@ void WeatherButton::leaveEvent( TQEvent *e ) { m_highlight = false; - tqrepaint( false ); + repaint( false ); TQButton::enterEvent( e ); } |