diff options
Diffstat (limited to 'src/whatsthis.cpp')
-rw-r--r-- | src/whatsthis.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/whatsthis.cpp b/src/whatsthis.cpp index 5369a6b..cb0e540 100644 --- a/src/whatsthis.cpp +++ b/src/whatsthis.cpp @@ -21,22 +21,22 @@ ***************************************************************************/ #include <kdebug.h> -#include <klocale.h> +#include <tdelocale.h> #include "whatsthis.h" // constructor // =========== -WhatsThis::WhatsThis( QWidget* widget ) -: QWhatsThis( widget ) +WhatsThis::WhatsThis( TQWidget* widget ) +: TQWhatsThis( widget ) { } // text // ==== -QString WhatsThis::text( const QPoint& /*pos */) +TQString WhatsThis::text( const TQPoint& /*pos */) { emit( clicked( )); return ""; } |