diff options
author | Slávek Banko <[email protected]> | 2015-03-05 05:03:32 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-03-05 05:03:32 +0100 |
commit | f9f32cc93e35d51abba0fb9f26afc211c60a5ea4 (patch) | |
tree | df566426539627ac453c084e8dccba09afdb64b8 /lib/koproperty/editors | |
parent | 98a0195cc514bc04129ef9420f1bfbc971770895 (diff) | |
download | koffice-f9f32cc93e35d51abba0fb9f26afc211c60a5ea4.tar.gz koffice-f9f32cc93e35d51abba0fb9f26afc211c60a5ea4.zip |
Fix incorrectly renamed strings
Diffstat (limited to 'lib/koproperty/editors')
-rw-r--r-- | lib/koproperty/editors/cursoredit.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/koproperty/editors/cursoredit.cpp b/lib/koproperty/editors/cursoredit.cpp index 042256a0..a95ab91f 100644 --- a/lib/koproperty/editors/cursoredit.cpp +++ b/lib/koproperty/editors/cursoredit.cpp @@ -46,14 +46,14 @@ CursorEdit::CursorEdit(Property *property, TQWidget *parent, const char *name) (*m_spValues)[i18n("Cross")] = TQt::CrossCursor; (*m_spValues)[i18n("Waiting")] = TQt::WaitCursor; (*m_spValues)[i18n("iBeam")] = TQt::IbeamCursor; - (*m_spValues)[i18n("SizeQt::Vertical")] = TQt::SizeVerCursor; - (*m_spValues)[i18n("SizeQt::Horizontal")] = TQt::SizeHorCursor; + (*m_spValues)[i18n("Size Vertical")] = TQt::SizeVerCursor; + (*m_spValues)[i18n("Size Horizontal")] = TQt::SizeHorCursor; (*m_spValues)[i18n("Size Slash")] = TQt::SizeBDiagCursor; (*m_spValues)[i18n("Size Backslash")] = TQt::SizeFDiagCursor; (*m_spValues)[i18n("Size All")] = TQt::SizeAllCursor; (*m_spValues)[i18n("Blank")] = TQt::BlankCursor; - (*m_spValues)[i18n("SplitQt::Vertical")] = TQt::SplitVCursor; - (*m_spValues)[i18n("SplitQt::Horizontal")] = TQt::SplitHCursor; + (*m_spValues)[i18n("Split Vertical")] = TQt::SplitVCursor; + (*m_spValues)[i18n("Split Horizontal")] = TQt::SplitHCursor; (*m_spValues)[i18n("Pointing Hand")] = TQt::PointingHandCursor; (*m_spValues)[i18n("Forbidden")] = TQt::ForbiddenCursor; (*m_spValues)[i18n("What's this")] = TQt::WhatsThisCursor; @@ -62,7 +62,7 @@ CursorEdit::CursorEdit(Property *property, TQWidget *parent, const char *name) //! @todo NOT THREAD-SAFE if (!m_cursorListData) { TQValueList<TQVariant> keys; - keys + keys << TQt::BlankCursor << TQt::ArrowCursor << TQt::UpArrowCursor @@ -86,13 +86,13 @@ CursorEdit::CursorEdit(Property *property, TQWidget *parent, const char *name) << i18n("Mouse Cursor Shape", "Cross") << i18n("Mouse Cursor Shape", "Waiting") << i18n("Mouse Cursor Shape", "I") - << i18n("Mouse Cursor Shape", "SizeQt::Vertical") - << i18n("Mouse Cursor Shape", "SizeQt::Horizontal") + << i18n("Mouse Cursor Shape", "Size Vertical") + << i18n("Mouse Cursor Shape", "Size Horizontal") << i18n("Mouse Cursor Shape", "Size Slash") << i18n("Mouse Cursor Shape", "Size Backslash") << i18n("Mouse Cursor Shape", "Size All") - << i18n("Mouse Cursor Shape", "SplitQt::Vertical") - << i18n("Mouse Cursor Shape", "SplitQt::Horizontal") + << i18n("Mouse Cursor Shape", "Split Vertical") + << i18n("Mouse Cursor Shape", "Split Horizontal") << i18n("Mouse Cursor Shape", "Pointing Hand") << i18n("Mouse Cursor Shape", "Forbidden") << i18n("Mouse Cursor Shape", "What's This?"); |