diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-05-18 22:56:16 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-05-18 22:56:54 +0900 |
commit | 00f1180c9628b267bef5884b2e0b9635d7117a1b (patch) | |
tree | c610f2bf93d43bf4180d98749ccf00a471290137 /forms | |
parent | 6589e01589ee5092318aafd47102f9e5b55c7a90 (diff) |
removed unused const rtl::OUString
Change-Id: If02be864f958de96ae1c54fe575b1828410390b1
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/ComboBox.cxx | 1 | ||||
-rw-r--r-- | forms/source/xforms/xpathlib/xpathlib.cxx | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx index 0ba7df850e1f..7a2c4d4aef08 100644 --- a/forms/source/component/ComboBox.cxx +++ b/forms/source/component/ComboBox.cxx @@ -418,7 +418,6 @@ void SAL_CALL OComboBoxModel::read(const Reference<stario::XObjectInputStream>& // ListSource if (nVersion < 0x0003) { - ::rtl::OUString sListSource; _rxInStream >> m_aListSource; } else // nVersion == 4 diff --git a/forms/source/xforms/xpathlib/xpathlib.cxx b/forms/source/xforms/xpathlib/xpathlib.cxx index 8fb3fedcfba0..30860023c7d5 100644 --- a/forms/source/xforms/xpathlib/xpathlib.cxx +++ b/forms/source/xforms/xpathlib/xpathlib.cxx @@ -311,9 +311,6 @@ static sal_Bool parseDateTime(const ::rtl::OUString& aString, DateTime& aDateTim sal_Int32 nDateLength = 10; sal_Int32 nTimeLength = 8; - ::rtl::OUString aDateTimeSep(RTL_CONSTASCII_USTRINGPARAM("T")); - ::rtl::OUString aDateSep(RTL_CONSTASCII_USTRINGPARAM("-")); - ::rtl::OUString aTimeSep(RTL_CONSTASCII_USTRINGPARAM(":")); ::rtl::OUString aUTCString(RTL_CONSTASCII_USTRINGPARAM("Z")); ::rtl::OUString aDateString = aDateTimeString.copy(0, nDateLength); |