diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-03 18:10:36 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-03 18:10:36 +0000 |
commit | d0a269b9b0361bf71c5dd5787be0839f9dcace8c (patch) | |
tree | f73cb165e3d643ae21c3bda5875fb87724484914 /kviewshell | |
parent | 1f42a5796ab9393d147b7478daa31b42ce07826d (diff) | |
download | tdegraphics-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.cpp | 2 |
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))); |