diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-24 11:31:17 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-24 11:31:17 -0500 |
commit | d598a49a3e1cadea0d72be28d147d219686413e7 (patch) | |
tree | 3111c0383d0b514f59aaeef0a2f656acc595fd8a /src/whatsthis.cpp | |
parent | 56ffa61b35fc088a0e7e2aa885b9ffed82c8d8be (diff) | |
download | knmap-d598a49a3e1cadea0d72be28d147d219686413e7.tar.gz knmap-d598a49a3e1cadea0d72be28d147d219686413e7.zip |
Convert to TDE R14 API
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 ""; } |