Skip to content

Commit e9f3d17

Browse files
committed
fix some doxygen documentation trouble
1 parent 21d6d6f commit e9f3d17

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

src/mblem_mod.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,10 +549,10 @@ UnicodeString Mblem::call_server( const UnicodeString& instance ){
549549
return TiCC::UnicodeFromUTF8(result);
550550
}
551551

552-
void Mblem::Classify( const UnicodeString& uWord ){
552+
void Mblem::Classify( const icu::UnicodeString& uWord ){
553553
/// give the lemma for 1 word
554554
/*!
555-
\param word a Unicode string with the word
555+
\param uWord a Unicode string with the word
556556
the internal mblemResult struct will be filled with 1 or more (alternative)
557557
solutions of a lemma + a POS-tag
558558
*/

src/mbma_brackets.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ BracketLeaf::BracketLeaf( const RulePart& p,
298298
}
299299

300300
BracketLeaf::BracketLeaf( CLEX::Type t,
301-
const UnicodeString& morpheme,
301+
const icu::UnicodeString& morpheme,
302302
int debug_flag,
303303
TiCC::LogStream& l ):
304304
BaseBracket( t, vector<CLEX::Type>(), debug_flag, l ),
@@ -787,7 +787,7 @@ folia::Morpheme *BracketLeaf::createMorpheme( folia::Document *doc,
787787

788788
folia::Morpheme *BracketLeaf::createMorpheme( folia::Document *doc,
789789
const string& textclass,
790-
UnicodeString& desc,
790+
icu::UnicodeString& desc,
791791
int& cnt ) const {
792792
/// use the data in the Leaf to create a folia::Morpheme node
793793
/*!
@@ -968,7 +968,7 @@ folia::Morpheme *BracketNest::createMorpheme( folia::Document *doc,
968968

969969
folia::Morpheme *BracketNest::createMorpheme( folia::Document *doc,
970970
const string& textclass,
971-
UnicodeString& desc,
971+
icu::UnicodeString& desc,
972972
int& cnt ) const {
973973
/// use the data in the Leaf to create a folia::Morpheme node
974974
/*!

src/mbma_mod.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ bool Mbma::init( const TiCC::Configuration& config ) {
296296
}
297297
}
298298

299-
vector<UnicodeString> Mbma::make_instances( const UnicodeString& word ){
299+
vector<UnicodeString> Mbma::make_instances( const icu::UnicodeString& word ){
300300
/// convert a Unicode string into a range of UTF8 instances for Timbl
301301
/*!
302302
\param word the UnicodeString representing 1 word to analyze
@@ -859,8 +859,8 @@ void Mbma::store_morphemes( frog_record& fd,
859859
}
860860

861861
void Mbma::store_brackets( frog_record& fd,
862-
const UnicodeString& wrd,
863-
const UnicodeString& head,
862+
const icu::UnicodeString& wrd,
863+
const icu::UnicodeString& head,
864864
bool unanalysed ) const {
865865
if (debugFlag > 1){
866866
DBG << "store_brackets(" << wrd << "," << head << ")" << endl;
@@ -923,7 +923,7 @@ void Mbma::store_brackets( frog_record& fd,
923923
}
924924

925925
void Mbma::store_brackets( frog_record& fd,
926-
const UnicodeString& orig_word,
926+
const icu::UnicodeString& orig_word,
927927
const BracketNest *brackets ) const {
928928
if (debugFlag > 1){
929929
DBG << "store_brackets(" << fd.word << "," << orig_word

src/mwu_chunker_mod.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ using icu::UnicodeString;
5151
#define LOG *TiCC::Log(errLog)
5252
#define DBG *TiCC::Log(dbgLog)
5353

54-
mwuAna::mwuAna( const UnicodeString& wrd,
54+
mwuAna::mwuAna( const icu::UnicodeString& wrd,
5555
bool glue_tag,
5656
size_t index ):
5757
mwu_start( index ),

src/ner_tagger_mod.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ bool NERTagger::fill_ners( const string& cat,
166166

167167
bool NERTagger::read_gazets( const string& name,
168168
const string& config_dir,
169-
vector<map<UnicodeString,set<string>>>& ners ){
169+
vector<map<icu::UnicodeString,set<string>>>& ners ){
170170
/// fill known Named Entities from a list of gazeteer files
171171
/*!
172172
\param name the filename to read the gazeteer info from
@@ -248,8 +248,8 @@ static vector<UnicodeString> serialize( const vector<set<string>>& stags ){
248248
return ambitags;
249249
}
250250

251-
vector<UnicodeString> NERTagger::create_ner_list( const vector<UnicodeString>& words,
252-
const vector<map<UnicodeString,set<string>>>& ners ){
251+
vector<UnicodeString> NERTagger::create_ner_list( const vector<icu::UnicodeString>& words,
252+
const vector<map<icu::UnicodeString,set<string>>>& ners ){
253253
/// create a list of ambitags given a range of words
254254
/*!
255255
\param words a sentence as a list of words

src/ucto_tokenizer_mod.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,8 @@ vector<Tokenizer::Token> UctoTokenizer::tokenize_data( const string& buffer,
582582
return tokenize_line( us, lang );
583583
}
584584

585-
vector<Tokenizer::Token> UctoTokenizer::tokenize_line( const UnicodeString& buffer,
586-
const string& lang ){
585+
vector<Tokenizer::Token> UctoTokenizer::tokenize_line( const icu::UnicodeString& buffer,
586+
const std::string& lang ){
587587
/// tokenize a buffer using a specific language
588588
/*!
589589
\param buffer a (possible long) sequence of characters

0 commit comments

Comments
 (0)