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 | e7e4b0b68cf15e861bb8f0f7ee76156460cdf97d (patch) | |
tree | 0d7b18b719cc71b15efcb5be91e4ca2f9926bf9e /lib | |
parent | 86ea45fe5947020ff39e593b7f86f3c8b518d79b (diff) | |
download | koffice-e7e4b0b68cf15e861bb8f0f7ee76156460cdf97d.tar.gz koffice-e7e4b0b68cf15e861bb8f0f7ee76156460cdf97d.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/koffice@1244690 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kofficecore/KoMainWindow.cpp | 2 | ||||
-rw-r--r-- | lib/kofficeui/KoGuideLineDia.cpp | 2 | ||||
-rw-r--r-- | lib/kofficeui/KoPageLayoutSize.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficecore/KoMainWindow.cpp b/lib/kofficecore/KoMainWindow.cpp index b78677f4..be8a0fa2 100644 --- a/lib/kofficecore/KoMainWindow.cpp +++ b/lib/kofficecore/KoMainWindow.cpp @@ -272,7 +272,7 @@ KoMainWindow::KoMainWindow( KInstance *instance, const char* name ) actionCollection(), "view_rm_splitter"); d->m_splitViewActionList.append(d->m_removeView); d->m_removeView->setEnabled(false); - d->m_orientation=new KSelectAction(i18n("Splitter &Qt::Orientation"), "view_orientation", 0, + d->m_orientation=new KSelectAction(i18n("Splitter &Orientation"), "view_orientation", 0, TQT_TQOBJECT(this), TQT_SLOT(slotSetOrientation()), actionCollection(), "view_splitter_orientation"); TQStringList items; diff --git a/lib/kofficeui/KoGuideLineDia.cpp b/lib/kofficeui/KoGuideLineDia.cpp index d3fb50b1..f91627ec 100644 --- a/lib/kofficeui/KoGuideLineDia.cpp +++ b/lib/kofficeui/KoGuideLineDia.cpp @@ -58,7 +58,7 @@ KoGuideLineDia::KoGuideLineDia( TQWidget *tqparent, KoPoint &pos, KoRect &rect, setCaption( i18n("Add Guide Line") ); TQVBox * vbox = makeVBoxMainWidget(); - TQButtonGroup *group = new TQButtonGroup( 1, Qt::Horizontal, i18n( "Qt::Orientation" ), vbox ); + TQButtonGroup *group = new TQButtonGroup( 1, Qt::Horizontal, i18n( "Orientation" ), vbox ); group->setRadioButtonExclusive( true ); //group->tqlayout(); m_hButton = new TQRadioButton( i18n( "Horizontal" ), group ); diff --git a/lib/kofficeui/KoPageLayoutSize.cpp b/lib/kofficeui/KoPageLayoutSize.cpp index c5868574..c191f565 100644 --- a/lib/kofficeui/KoPageLayoutSize.cpp +++ b/lib/kofficeui/KoPageLayoutSize.cpp @@ -108,7 +108,7 @@ KoPageLayoutSize::KoPageLayoutSize(TQWidget *tqparent, const KoPageLayout& tqlay connect( epgHeight, TQT_SIGNAL( valueChangedPt(double ) ), this, TQT_SLOT( heightChanged(double) ) ); // --------------- orientation --------------- - m_orientGroup = new TQHButtonGroup( i18n( "Qt::Orientation" ), this ); + m_orientGroup = new TQHButtonGroup( i18n( "Orientation" ), this ); m_orientGroup->setInsideSpacing( KDialog::spacingHint() ); grid1->addWidget( m_orientGroup, 2, 0 ); |