summaryrefslogtreecommitdiff
path: root/lingucomponent
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-04-24 13:02:33 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-04-24 13:02:33 +0000
commit98b52509fc990f14eddf5456adcbd7050f4f6b2c (patch)
treeffc994518588ab62e36cfeb40c233f51ee87d005 /lingucomponent
parent1113e66a630020fb9fbd3512af9542c7b4b79830 (diff)
INTEGRATION: CWS tl50 (1.3.62); FILE MERGED
2008/02/27 15:29:57 tl 1.3.62.1: #i86321# removed unused code
Diffstat (limited to 'lingucomponent')
-rw-r--r--lingucomponent/source/languageguessing/guess.hxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/lingucomponent/source/languageguessing/guess.hxx b/lingucomponent/source/languageguessing/guess.hxx
index cdbbbc4f5d11..aff391ed9e29 100644
--- a/lingucomponent/source/languageguessing/guess.hxx
+++ b/lingucomponent/source/languageguessing/guess.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: guess.hxx,v $
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
* This file is part of OpenOffice.org.
*
@@ -53,21 +53,15 @@ class Guess{
Guess();
/**
- * Init from 3 strings (language, country and encoding) and 1 int witch represents the rank
- */
- Guess(string& lang, string& country, string& enc, int order);
-
- /**
* Init from a string like [en-UK-utf8] and the rank
*/
- Guess(char * guess_str, int order);
+ Guess(char * guess_str);
~Guess();
string GetLanguage();
string GetCountry();
string GetEncoding();
- int GetOrder();
bool operator==(string lang);
@@ -75,7 +69,6 @@ class Guess{
string language_str;
string country_str;
string encoding_str;
- int order;
};
#endif