summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/propertyeditor.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2015-03-05 05:08:07 +0100
committerSlávek Banko <slavek.banko@axis.cz>2015-03-05 05:42:54 +0100
commit13c38b13e3e3ecb9167f59c2c7fbb9a1c22b03b8 (patch)
tree555997efb35d034d5f1dde227e99a0da1da44bfc /kdevdesigner/designer/propertyeditor.cpp
parent9cf3238c5f8a7c9d1323a2e2e608a03988d7ac44 (diff)
downloadtdevelop-13c38b13e3e3ecb9167f59c2c7fbb9a1c22b03b8.tar.gz
tdevelop-13c38b13e3e3ecb9167f59c2c7fbb9a1c22b03b8.zip
Fix incorrectly renamed strings
(cherry picked from commit a323a9c371885d011a815fd45987414539feda7f)
Diffstat (limited to 'kdevdesigner/designer/propertyeditor.cpp')
-rw-r--r--kdevdesigner/designer/propertyeditor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdevdesigner/designer/propertyeditor.cpp b/kdevdesigner/designer/propertyeditor.cpp
index e7a5d387..8397fc22 100644
--- a/kdevdesigner/designer/propertyeditor.cpp
+++ b/kdevdesigner/designer/propertyeditor.cpp
@@ -2382,16 +2382,16 @@ TQComboBox *PropertyCursorItem::combo()
comb->insertItem( CrossPix, i18n("Cross"), TQObject::CrossCursor );
comb->insertItem( WaitPix, i18n("Waiting"), TQObject::WaitCursor );
comb->insertItem( IBeamPix, i18n("iBeam"), TQObject::IbeamCursor );
- comb->insertItem( SizeVPix, i18n("SizeQt::Vertical"), TQObject::SizeVerCursor );
- comb->insertItem( SizeHPix, i18n("SizeQt::Horizontal"), TQObject::SizeHorCursor );
+ comb->insertItem( SizeVPix, i18n("Size Vertical"), TQObject::SizeVerCursor );
+ comb->insertItem( SizeHPix, i18n("Size Horizontal"), TQObject::SizeHorCursor );
comb->insertItem( SizeFPix, i18n("Size Slash"), TQObject::SizeBDiagCursor );
comb->insertItem( SizeBPix, i18n("Size Backslash"), TQObject::SizeFDiagCursor );
comb->insertItem( SizeAllPix, i18n("Size All"), TQObject::SizeAllCursor );
cur = TQBitmap( 25, 25, 1 );
cur.setMask( cur );
comb->insertItem( cur, i18n("Blank"), TQObject::BlankCursor );
- comb->insertItem( VSplitPix, i18n("SplitQt::Vertical"), TQObject::SplitVCursor );
- comb->insertItem( HSplitPix, i18n("SplitQt::Horizontal"), TQObject::SplitHCursor );
+ comb->insertItem( VSplitPix, i18n("Split Vertical"), TQObject::SplitVCursor );
+ comb->insertItem( HSplitPix, i18n("Split Horizontal"), TQObject::SplitHCursor );
comb->insertItem( HandPix, i18n("Pointing Hand"), TQObject::PointingHandCursor );
comb->insertItem( NoPix, i18n("Forbidden"), TQObject::ForbiddenCursor );