summaryrefslogtreecommitdiffstats
path: root/src/kscratchpadview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kscratchpadview.cpp')
-rwxr-xr-xsrc/kscratchpadview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kscratchpadview.cpp b/src/kscratchpadview.cpp
index fffe989..b52a5ce 100755
--- a/src/kscratchpadview.cpp
+++ b/src/kscratchpadview.cpp
@@ -19,11 +19,11 @@
***************************************************************************/
#include "kscratchpadview.h"
-KScratchpadView::KScratchpadView( QWidget *parent, const char *name)
- : KToolBar(parent, name)
+KScratchpadView::KScratchpadView( TQWidget *tqparent, const char *name)
+ : KToolBar(tqparent, name)
{
view = new KTextEdit( this ) ;
- view->setFont( QFont( "Courier", view->font().pointSize() ) ) ;
+ view->setFont( TQFont( "Courier", view->font().pointSize() ) ) ;
view->setReadOnly( true ) ;
setWidget( view ) ;
@@ -39,7 +39,7 @@ void KScratchpadView::setContent( unsigned char *values, unsigned int len )
{
unsigned int i, val ;
- QString text, str ;
+ TQString text, str ;
text = "Scratchpad" ;
for ( i = 0 ; i < len ; i++ ) {