diff options
Diffstat (limited to 'textproc/isearch/files')
-rw-r--r-- | textproc/isearch/files/patch-src::registry.hxx | 11 | ||||
-rw-r--r-- | textproc/isearch/files/patch-src::string.cxx | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/textproc/isearch/files/patch-src::registry.hxx b/textproc/isearch/files/patch-src::registry.hxx new file mode 100644 index 000000000000..82245d37e0ac --- /dev/null +++ b/textproc/isearch/files/patch-src::registry.hxx @@ -0,0 +1,11 @@ +--- src/registry.hxx.orig Sun Dec 15 09:13:27 2002 ++++ src/registry.hxx Sun Dec 15 09:12:51 2002 +@@ -89,7 +89,7 @@ + void LoadFromFile(const STRING& FileName); + void AddFromFile(const STRING& FileName); + // void Print(ostream& os, const INT Level) const; +- void fprint(FILE* fp, const INT level = 0) const; ++ void fprint(FILE* fp, const INT level) const; + void ProfilePrint(ostream& os, const INT Level) const; + void GetData(STRLIST *StrlistBuffer); + void DeleteChildren(); diff --git a/textproc/isearch/files/patch-src::string.cxx b/textproc/isearch/files/patch-src::string.cxx new file mode 100644 index 000000000000..784a3ac9cc14 --- /dev/null +++ b/textproc/isearch/files/patch-src::string.cxx @@ -0,0 +1,11 @@ +--- src/string.cxx.orig Sun Dec 15 09:27:00 2002 ++++ src/string.cxx Sun Dec 15 09:27:20 2002 +@@ -574,7 +574,7 @@ + + // can this be const STRING& ? + ostream& operator<<(ostream& os, const STRING& str) { +- os.write(str.Buffer, str.Length); ++ os.write((char*)str.Buffer, str.Length); + return os; + } + |