summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-20 11:22:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-20 11:22:30 +0200
commitb1e945d8969e5d27df4ce94e77d871576b2b2d32 (patch)
tree86c40ad15fac952047fcea7291ca8bd9a2b091d4
parentRelated cid#1371287: Improve code to not depend on missing move assignment (diff)
downloadcore-b1e945d8969e5d27df4ce94e77d871576b2b2d32.tar.gz
core-b1e945d8969e5d27df4ce94e77d871576b2b2d32.zip
Remove redundant default ctor definition
Change-Id: Ifdeaf8cde86eb284e7b5c67e8ef3bfe816c5654c
-rw-r--r--i18nutil/source/utility/unicode.cxx8
-rw-r--r--include/i18nutil/unicode.hxx2
2 files changed, 0 insertions, 10 deletions
diff --git a/i18nutil/source/utility/unicode.cxx b/i18nutil/source/utility/unicode.cxx
index 6507479807fe..0ae9ab77c553 100644
--- a/i18nutil/source/utility/unicode.cxx
+++ b/i18nutil/source/utility/unicode.cxx
@@ -1000,14 +1000,6 @@ OUString SAL_CALL unicode::formatPercent(double dNumber,
return aRet;
}
-ToggleUnicodeCodepoint::ToggleUnicodeCodepoint ()
-{
- maInput = OUStringBuffer();
- maOutput = OUStringBuffer();
- maUtf16 = OUStringBuffer();
- maCombining = OUStringBuffer();
-}
-
bool ToggleUnicodeCodepoint::AllowMoreInput(sal_Unicode uChar)
{
//arbitrarily chosen maximum length allowed - normal max usage would be around 30.
diff --git a/include/i18nutil/unicode.hxx b/include/i18nutil/unicode.hxx
index 034b85e44ad3..318c7807c9be 100644
--- a/include/i18nutil/unicode.hxx
+++ b/include/i18nutil/unicode.hxx
@@ -80,8 +80,6 @@ private:
bool mbIsHexString = false;
public:
- ToggleUnicodeCodepoint();
-
/**
Build an input string of valid UTF16 units to toggle.
-do not call the other functions until the input process is complete