summaryrefslogtreecommitdiffstats
path: root/krusader/krusaderview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/krusaderview.cpp')
-rw-r--r--krusader/krusaderview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/krusader/krusaderview.cpp b/krusader/krusaderview.cpp
index a1bbda3..c8fb622 100644
--- a/krusader/krusaderview.cpp
+++ b/krusader/krusaderview.cpp
@@ -48,7 +48,7 @@
#include "GUI/profilemanager.h"
#include "Dialogs/percentalsplitter.h"
#include "krservices.h"
-#include <clipboard.h>
+#include <tqclipboard.h>
KrusaderView::KrusaderView( TQWidget *parent ) : TQWidget( parent, "KrusaderView" ), activePanel(0),
konsole_part( 0L ) {}
@@ -88,7 +88,7 @@ void KrusaderView::start( TQStringList leftTabs, TQStringList leftTypes, TQValue
( fnKeys, i18n( "Function keys allow performing fast "
"operations on files." ) );
- // and insert the whole thing into the main layout... at last
+ // and insert the whole thing into the main tqlayout... at last
mainLayout->addWidget( vert_splitter, 0, 0 ); //<>
mainLayout->addWidget( cmdLine, 1, 0 );
mainLayout->addWidget( fnKeys, 2, 0 );
@@ -159,7 +159,7 @@ void KrusaderView::createTE() {
if ( konsole_part == 0L ) { // konsole part is not yet loaded
KLibFactory * factory = KLibLoader::self() ->factory( "libkonsolepart" );
if ( factory ) {
- TQWidget *focusW = tqApp->focusWidget();
+ TQWidget *focusW = tqApp->tqfocusWidget();
// Create the part
konsole_part = ( KParts::ReadOnlyPart * )
factory->create( TQT_TQOBJECT(terminal_dock), "konsolepart",
@@ -339,7 +339,7 @@ bool KrusaderView::eventFilter ( TQObject * watched, TQEvent * e ) {
ACTIVE_PANEL->slotFocusOnMe();
return true;
} else if( Krusader::actPaste->shortcut().contains( pressedKey ) ) {
- TQString text = TQApplication::clipboard()->text();
+ TQString text = TQApplication::tqclipboard()->text();
if ( ! text.isEmpty() )
{
text.replace("\n", "\r");