summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-03 18:10:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-03 18:10:36 +0000
commit7b4db4f16d44d4e9aeee241211827558acd64f17 (patch)
tree4e4c96055b7b66057220307e2ba17131189b5c47
parent3d7cc5d294c8da55ecaefe7a9f5631a72adc610e (diff)
downloadkdiff3-7b4db4f1.tar.gz
kdiff3-7b4db4f1.zip
Fix instances of Orientation in quotes which were accidentally renamed to Qt::Orientation during TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdiff3@1244690 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--src/kdiff3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kdiff3.cpp b/src/kdiff3.cpp
index a10415c..d17a031 100644
--- a/src/kdiff3.cpp
+++ b/src/kdiff3.cpp
@@ -542,7 +542,7 @@ void KDiff3App::initActions( KActionCollection* ac )
new KAction(i18n("Focus Next Window"), TQt::CTRL+TQt::Key_Tab, TQT_TQOBJECT(this), TQT_SLOT(slotWinFocusNext()), ac, "win_focus_next", false, false);
#endif
winFocusPrev = new KAction(i18n("Focus Prev Window"), TQt::ALT+TQt::Key_Left, TQT_TQOBJECT(this), TQT_SLOT(slotWinFocusPrev()), ac, "win_focus_prev");
- winToggleSplitOrientation = new KAction(i18n("Toggle Split Qt::Orientation"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotWinToggleSplitterOrientation()), ac, "win_toggle_split_orientation");
+ winToggleSplitOrientation = new KAction(i18n("Toggle Split Orientation"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotWinToggleSplitterOrientation()), ac, "win_toggle_split_orientation");
dirShowBoth = new KToggleAction(i18n("Dir && Text Split Screen View"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotDirShowBoth()), ac, "win_dir_show_both");
dirShowBoth->setChecked( true );