summaryrefslogtreecommitdiffstats
path: root/klipper/toplevel.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:11:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:11:21 -0600
commitf537c21b68e08f649b1b297bce8f3904603137e0 (patch)
treefb33065387509dea898c90022ddec9c3f8ede86d /klipper/toplevel.cpp
parentdc5f267664506a312203c26bfe9001a448b0bb0f (diff)
downloadtdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz
tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'klipper/toplevel.cpp')
-rw-r--r--klipper/toplevel.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/klipper/toplevel.cpp b/klipper/toplevel.cpp
index b7832aae5..f9254dee3 100644
--- a/klipper/toplevel.cpp
+++ b/klipper/toplevel.cpp
@@ -150,13 +150,13 @@ KlipperWidget::KlipperWidget( TQWidget *parent, TDEConfig* config )
m_history = new History( this, "main_history" );
- // we need that collection, otherwise KToggleAction is not happy :}
+ // we need that collection, otherwise TDEToggleAction is not happy :}
TQString defaultGroup( "default" );
- KActionCollection *collection = new KActionCollection( this, "my collection" );
- toggleURLGrabAction = new KToggleAction( collection, "toggleUrlGrabAction" );
+ TDEActionCollection *collection = new TDEActionCollection( this, "my collection" );
+ toggleURLGrabAction = new TDEToggleAction( collection, "toggleUrlGrabAction" );
toggleURLGrabAction->setEnabled( true );
toggleURLGrabAction->setGroup( defaultGroup );
- clearHistoryAction = new KAction( i18n("C&lear Clipboard History"),
+ clearHistoryAction = new TDEAction( i18n("C&lear Clipboard History"),
"history_clear",
0,
TQT_TQOBJECT(history()),
@@ -165,7 +165,7 @@ KlipperWidget::KlipperWidget( TQWidget *parent, TDEConfig* config )
"clearHistoryAction" );
connect( clearHistoryAction, TQT_SIGNAL( activated() ), TQT_SLOT( slotClearClipboard() ) );
clearHistoryAction->setGroup( defaultGroup );
- configureAction = new KAction( i18n("&Configure Klipper..."),
+ configureAction = new TDEAction( i18n("&Configure Klipper..."),
"configure",
0,
TQT_TQOBJECT(this),
@@ -173,7 +173,7 @@ KlipperWidget::KlipperWidget( TQWidget *parent, TDEConfig* config )
collection,
"configureAction" );
configureAction->setGroup( defaultGroup );
- quitAction = new KAction( i18n("&Quit"),
+ quitAction = new TDEAction( i18n("&Quit"),
"exit",
0,
TQT_TQOBJECT(this),