summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-05-18 22:56:16 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-05-18 22:56:54 +0900
commit00f1180c9628b267bef5884b2e0b9635d7117a1b (patch)
treec610f2bf93d43bf4180d98749ccf00a471290137 /forms
parent6589e01589ee5092318aafd47102f9e5b55c7a90 (diff)
removed unused const rtl::OUString
Change-Id: If02be864f958de96ae1c54fe575b1828410390b1
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ComboBox.cxx1
-rw-r--r--forms/source/xforms/xpathlib/xpathlib.cxx3
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);