summaryrefslogtreecommitdiff
path: root/textproc/isearch/patches/patch-src_registry.hxx
blob: 3d36c5e26e026319ca121f3fd9e311d6f9af757f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$NetBSD: patch-src_registry.hxx,v 1.1 2012/12/21 10:29:47 dholland Exp $

Chase after the C++ standard:
   - use "std" qualification

--- src/registry.hxx~	2000-02-04 23:40:35.000000000 +0000
+++ src/registry.hxx
@@ -79,7 +79,7 @@ public:
   // a comma-delimited list (e.g., tag=val1,val2,val3) into multiple nodes.
   void ProfileLoadFromFile(const STRING& FileName, const STRLIST& Position);
   void ProfileAddFromFile(const STRING& FileName, const STRLIST& Position);
-  void ProfileWrite(ostream& os, const STRING& FileName, const STRLIST& Position);
+  void ProfileWrite(std::ostream& os, const STRING& FileName, const STRLIST& Position);
 //  friend ostream & operator<<(ostream& os, const REGISTRY& Registry);
   ~REGISTRY();
 
@@ -90,7 +90,7 @@ private:
   void AddFromFile(const STRING& FileName);
 //  void Print(ostream& os, const INT Level) const;
 	void fprint(FILE* fp, const INT level = 0) const;
-  void ProfilePrint(ostream& os, const INT Level) const;
+  void ProfilePrint(std::ostream& os, const INT Level) const;
   void GetData(STRLIST *StrlistBuffer);
   void DeleteChildren();
   REGISTRY* FindNode(const STRING& Position);