summaryrefslogtreecommitdiff
path: root/x11-toolkits/gtk--2/files
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-04 07:32:45 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-04-04 07:32:45 +0000
commitbbaa0cf805f96dbda0711b49654fb56e44217f1b (patch)
tree3c15da47ad36558067358d633491673a03143aea /x11-toolkits/gtk--2/files
parentUpdate to 2.2.1.2. (diff)
Update to 2.2.1.
Notes
Notes: svn path=/head/; revision=78131
Diffstat (limited to 'x11-toolkits/gtk--2/files')
-rw-r--r--x11-toolkits/gtk--2/files/patch-examples_markup_parser.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/x11-toolkits/gtk--2/files/patch-examples_markup_parser.cc b/x11-toolkits/gtk--2/files/patch-examples_markup_parser.cc
new file mode 100644
index 000000000000..25bab4bd093f
--- /dev/null
+++ b/x11-toolkits/gtk--2/files/patch-examples_markup_parser.cc
@@ -0,0 +1,19 @@
+--- examples/markup/parser.cc.orig Sat Mar 15 17:28:24 2003
++++ examples/markup/parser.cc Sat Mar 15 17:31:58 2003
+@@ -19,7 +19,6 @@
+ #include <iomanip>
+ #include <iostream>
+
+-
+ namespace
+ {
+
+@@ -115,7 +114,7 @@
+ void DumpParser::indent()
+ {
+ if(parse_depth_ > 0)
+- std::cout << std::setw(4 * parse_depth_) << std::right << ' ';
++ std::cout << std::setw(4 * parse_depth_) << std::ios::right << ' ';
+ }
+
+ } // anonymous namespace