summaryrefslogtreecommitdiffstats
path: root/kviewshell
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
commitd0a269b9b0361bf71c5dd5787be0839f9dcace8c (patch)
treef73cb165e3d643ae21c3bda5875fb87724484914 /kviewshell
parent1f42a5796ab9393d147b7478daa31b42ce07826d (diff)
downloadtdegraphics-d0a269b9b0361bf71c5dd5787be0839f9dcace8c.tar.gz
tdegraphics-d0a269b9b0361bf71c5dd5787be0839f9dcace8c.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/kdegraphics@1244690 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell')
-rw-r--r--kviewshell/kviewpart.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kviewshell/kviewpart.cpp b/kviewshell/kviewpart.cpp
index 1a0902f2..115c0a50 100644
--- a/kviewshell/kviewpart.cpp
+++ b/kviewshell/kviewpart.cpp
@@ -210,7 +210,7 @@ KViewPart::KViewPart(TQWidget *parentWidget, const char *widgetName, TQObject *t
TQStringList orientations;
orientations.append(i18n("Portrait"));
orientations.append(i18n("Landscape"));
- orientation = new KSelectAction (i18n("Preferred &Qt::Orientation"), 0, 0, 0, actionCollection(), "view_orientation");
+ orientation = new KSelectAction (i18n("Preferred &Orientation"), 0, 0, 0, actionCollection(), "view_orientation");
orientation->setItems(orientations);
connect(orientation, TQT_SIGNAL(activated (int)), &userRequestedPaperSize, TQT_SLOT(setOrientation(int)));