summaryrefslogtreecommitdiff
path: root/include/svl/ondemand.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-16 10:11:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-18 10:03:44 +0000
commit2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae (patch)
tree66ba7ff0b95cf5ceeda5e53294a71c6786460eb3 /include/svl/ondemand.hxx
parent4e59eecc077d27dd9762e7c890b2aaf92a212959 (diff)
update unusedmethods plugin to deal with constructors
and fix the operator< implementations in some of the other plugins too. Change-Id: Ie5631e0cdc8d2a994ad2af2533cdb558a6cfc035 Reviewed-on: https://gerrit.libreoffice.org/25057 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svl/ondemand.hxx')
-rw-r--r--include/svl/ondemand.hxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/include/svl/ondemand.hxx b/include/svl/ondemand.hxx
index cfc729b9b518..a7d183fc928a 100644
--- a/include/svl/ondemand.hxx
+++ b/include/svl/ondemand.hxx
@@ -74,18 +74,6 @@ public:
pCurrent = pSystem = aSysLocale.GetLocaleDataPtr();
eCurrentLanguage = LANGUAGE_SYSTEM;
}
- OnDemandLocaleDataWrapper(
- const css::uno::Reference< css::uno::XComponentContext >& rxContext,
- const LanguageTag& rLanguageTag
- )
- : pEnglish(nullptr)
- , pAny(nullptr)
- , pCurrent(nullptr)
- , bInitialized(false)
- {
- pSystem = aSysLocale.GetLocaleDataPtr();
- init( rxContext, rLanguageTag );
- }
~OnDemandLocaleDataWrapper()
{
delete pEnglish;
@@ -160,15 +148,6 @@ public:
, bValid(false)
, bInitialized(false)
{}
- OnDemandCalendarWrapper(
- const css::uno::Reference< css::uno::XComponentContext >& rxContext,
- css::lang::Locale& rLocale
- )
- : bValid(false)
- , bInitialized(false)
- {
- init( rxContext, rLocale );
- }
~OnDemandCalendarWrapper()
{
delete pPtr;
@@ -231,16 +210,6 @@ public:
, bValid(false)
, bInitialized(false)
{}
- OnDemandTransliterationWrapper(
- const css::uno::Reference< css::uno::XComponentContext >& rxContext,
- LanguageType eLang,
- css::i18n::TransliterationModules nTypeP
- )
- : bValid(false)
- , bInitialized(false)
- {
- init( rxContext, eLang, nTypeP );
- }
~OnDemandTransliterationWrapper()
{
delete pPtr;
@@ -304,14 +273,6 @@ public:
: pPtr(nullptr)
, bInitialized(false)
{}
- OnDemandNativeNumberWrapper(
- const css::uno::Reference< css::uno::XComponentContext >& rxContext
- )
- : pPtr(nullptr)
- , bInitialized(false)
- {
- init( rxContext );
- }
~OnDemandNativeNumberWrapper()
{
delete pPtr;