diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:08:07 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-03-05 05:42:54 +0100 |
commit | 13c38b13e3e3ecb9167f59c2c7fbb9a1c22b03b8 (patch) | |
tree | 555997efb35d034d5f1dde227e99a0da1da44bfc /lib/widgets/propeditor/propertymachinefactory.cpp | |
parent | 9cf3238c5f8a7c9d1323a2e2e608a03988d7ac44 (diff) | |
download | tdevelop-13c38b13e3e3ecb9167f59c2c7fbb9a1c22b03b8.tar.gz tdevelop-13c38b13e3e3ecb9167f59c2c7fbb9a1c22b03b8.zip |
Fix incorrectly renamed strings
(cherry picked from commit a323a9c371885d011a815fd45987414539feda7f)
Diffstat (limited to 'lib/widgets/propeditor/propertymachinefactory.cpp')
-rw-r--r-- | lib/widgets/propeditor/propertymachinefactory.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/widgets/propeditor/propertymachinefactory.cpp b/lib/widgets/propeditor/propertymachinefactory.cpp index 882964bc..389fc38f 100644 --- a/lib/widgets/propeditor/propertymachinefactory.cpp +++ b/lib/widgets/propeditor/propertymachinefactory.cpp @@ -151,7 +151,7 @@ Machine *PropertyMachineFactory::machineForProperty(MultiProperty *property) spValues[i18n("Expanding")] = TQSizePolicy::Expanding; spValues[i18n("Minimum Expanding")] = TQSizePolicy::MinimumExpanding; spValues[i18n("Ignored")] = TQSizePolicy::Ignored; - + Machine *mach = new Machine(new PSizePolicyEdit(property, spValues)); property->details.append(ChildProperty(property, i18n("hSizeType"), ChildProperty::SizePolicy_HorData, spValues, i18n("Horizontal Size Type"))); property->details.append(ChildProperty(property, i18n("vSizeType"), ChildProperty::SizePolicy_VerData, spValues, i18n("Vertical Size Type"))); @@ -167,14 +167,14 @@ Machine *PropertyMachineFactory::machineForProperty(MultiProperty *property) spValues[i18n("Cross")] = TQt::CrossCursor; spValues[i18n("Waiting")] = TQt::WaitCursor; spValues[i18n("iBeam")] = TQt::IbeamCursor; - spValues[i18n("SizeQt::Vertical")] = TQt::SizeVerCursor; - spValues[i18n("SizeQt::Horizontal")] = TQt::SizeHorCursor; + spValues[i18n("Size Vertical")] = TQt::SizeVerCursor; + spValues[i18n("Size Horizontal")] = TQt::SizeHorCursor; spValues[i18n("Size Slash")] = TQt::SizeBDiagCursor; spValues[i18n("Size Backslash")] = TQt::SizeFDiagCursor; spValues[i18n("Size All")] = TQt::SizeAllCursor; spValues[i18n("Blank")] = TQt::BlankCursor; - spValues[i18n("SplitQt::Vertical")] = TQt::SplitVCursor; - spValues[i18n("SplitQt::Horizontal")] = TQt::SplitHCursor; + spValues[i18n("Split Vertical")] = TQt::SplitVCursor; + spValues[i18n("Split Horizontal")] = TQt::SplitHCursor; spValues[i18n("Pointing Hand")] = TQt::PointingHandCursor; spValues[i18n("Forbidden")] = TQt::ForbiddenCursor; spValues[i18n("What's this")] = TQt::WhatsThisCursor; |