Kaydet (Commit) 5d0402cf authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Make ~SearchParam non-inline

...so clients do not need to link against tl merely because of ~String.

Change-Id: I1cf1dd17c6bed96f6bea765747adbbe962a93fb1
üst 8b52b40b
......@@ -79,6 +79,8 @@ public:
SearchParam( const SearchParam& );
~SearchParam();
const String& GetSrchStr() const { return sSrchStr; }
const String& GetReplaceStr() const { return sReplaceStr; }
SearchType GetSrchType() const { return m_eSrchType; }
......
......@@ -76,6 +76,8 @@ SearchParam::SearchParam( const SearchParam& rParam )
nTransliterationFlags = rParam.nTransliterationFlags;
}
SearchParam::~SearchParam() {}
static bool lcl_Equals( const SearchOptions& rSO1, const SearchOptions& rSO2 )
{
return rSO1.algorithmType == rSO2.algorithmType &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment