summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpdirp.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-27 22:04:25 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-27 22:04:25 +0100
commit72a5c2a56ae1510380c8993fafffa7916fcda7e1 (patch)
tree9a1a83dacd962816c8b46579d45a707b6a4aa2df /ucb/source/ucp/ftp/ftpdirp.cxx
parentd7e6a24f160dc0de94f681fb6c88a0a287cebb41 (diff)
Remove RTL_CONSTASCII_STRINGPARAM in ucb
Change-Id: Ib450c1463add267ad64707c7a2d71e7f6a9c0849
Diffstat (limited to 'ucb/source/ucp/ftp/ftpdirp.cxx')
-rw-r--r--ucb/source/ucp/ftp/ftpdirp.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/ucb/source/ucp/ftp/ftpdirp.cxx b/ucb/source/ucp/ftp/ftpdirp.cxx
index f618019d3019..3f98ca13ef19 100644
--- a/ucb/source/ucp/ftp/ftpdirp.cxx
+++ b/ucb/source/ucp/ftp/ftpdirp.cxx
@@ -741,40 +741,40 @@ sal_Bool FTPDirectoryParser::parseVMS (
++p;
}
if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("JAN")) == 0)
+ pMonth, monthLen, "JAN", monthLen) == 0)
rEntry.m_aDate.SetMonth(1);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("FEB")) == 0)
+ pMonth, monthLen, "FEB", monthLen) == 0)
rEntry.m_aDate.SetMonth(2);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("MAR")) == 0)
+ pMonth, monthLen, "MAR", monthLen) == 0)
rEntry.m_aDate.SetMonth(3);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("APR")) == 0)
+ pMonth, monthLen, "APR", monthLen) == 0)
rEntry.m_aDate.SetMonth(4);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("MAY")) == 0)
+ pMonth, monthLen, "MAY", monthLen) == 0)
rEntry.m_aDate.SetMonth(5);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("JUN")) == 0)
+ pMonth, monthLen, "JUN", monthLen) == 0)
rEntry.m_aDate.SetMonth(6);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("JUL")) == 0)
+ pMonth, monthLen, "JUL", monthLen) == 0)
rEntry.m_aDate.SetMonth(7);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("AUG")) == 0)
+ pMonth, monthLen, "AUG", monthLen) == 0)
rEntry.m_aDate.SetMonth(8);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("SEP")) == 0)
+ pMonth, monthLen, "SEP", monthLen) == 0)
rEntry.m_aDate.SetMonth(9);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("OCT")) == 0)
+ pMonth, monthLen, "OCT", monthLen) == 0)
rEntry.m_aDate.SetMonth(10);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("NOV")) == 0)
+ pMonth, monthLen, "NOV", monthLen) == 0)
rEntry.m_aDate.SetMonth(11);
else if (rtl_str_compareIgnoreAsciiCase_WithLength(
- pMonth, monthLen, RTL_CONSTASCII_STRINGPARAM("DEC")) == 0)
+ pMonth, monthLen, "DEC", monthLen) == 0)
rEntry.m_aDate.SetMonth(12);
else
return sal_False;