summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/TDEAccel.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/TDEAccel.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/TDEAccel.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/TDEAccel.java b/tdejava/koala/org/trinitydesktop/koala/TDEAccel.java
index 9bb4a0a7..f217325f 100644
--- a/tdejava/koala/org/trinitydesktop/koala/TDEAccel.java
+++ b/tdejava/koala/org/trinitydesktop/koala/TDEAccel.java
@@ -42,9 +42,9 @@ import org.trinitydesktop.qt.TQAccel;
// Insert an action "Scroll Up" which is associated with the "Up" key:
pAccel.insert( "Scroll Up", i18n("Scroll up"),
i18n("Scroll up the current document by one line."),
- Qt.Key_Up, this, SLOT("slotScrollUp()") );
+ Qt.Key_Up, this, TQ_SLOT("slotScrollUp()") );
// Insert an standard acclerator action.
- pAccel.insert( TDEStdAccel.Print, this, SLOT("slotPrint()") );
+ pAccel.insert( TDEStdAccel.Print, this, TQ_SLOT("slotPrint()") );
// Update the shortcuts by read any user-defined settings from the
// application's config file.
pAccel.readSettings();
@@ -134,7 +134,7 @@ public class TDEAccel extends TQAccel {
insert( "Do Something", i18n("Do Something"),
i18n("This action allows you to do something really great with this program to "
"the currently open document."),
- ALT+Key_D, this, SLOT("slotDoSomething()") );
+ ALT+Key_D, this, TQ_SLOT("slotDoSomething()") );
</pre>
@param sAction The internal name of the action.
@param sLabel An i18n'ized short description of the action displayed when
@@ -164,7 +164,7 @@ public class TDEAccel extends TQAccel {
of the action as for the user-visible label.
Usage:
<pre>
- insert( i18n("Do Something"), ALT+Key_D, this, SLOT("slotDoSomething()") );
+ insert( i18n("Do Something"), ALT+Key_D, this, TQ_SLOT("slotDoSomething()") );
</pre>
@param psAction The name AND label of the action.
@param cutDef The default shortcut for this action.