summaryrefslogtreecommitdiff
path: root/examples/markup
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@usa.net>2003-05-02 16:07:24 +0000
committerMurray Cumming <murrayc@src.gnome.org>2003-05-02 16:07:24 +0000
commit5d8b9401508008977545e89a2be7ad1babae151b (patch)
treeaece7ecf2a5abe98f2a12643e970db02e5150938 /examples/markup
parent4588a3f9105ec5ad4e70717f24370d64bc8c8a1f (diff)
downloadglibmm-5d8b9401508008977545e89a2be7ad1babae151b.tar.gz
Added doxygen comments to gobj() methods. Commented-out a std::right that
2003-05-02 Murray Cumming <murrayc@usa.net> * tools/m4/*.m4: Added doxygen comments to gobj() methods. * examples/markup/parser.cc: Commented-out a std::right that gcc 2.93 does not like.
Diffstat (limited to 'examples/markup')
-rw-r--r--examples/markup/parser.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/markup/parser.cc b/examples/markup/parser.cc
index a9764508..cd4cc859 100644
--- a/examples/markup/parser.cc
+++ b/examples/markup/parser.cc
@@ -115,7 +115,11 @@ void DumpParser::on_text(Glib::Markup::ParseContext&, const Glib::ustring& text)
void DumpParser::indent()
{
if(parse_depth_ > 0)
- std::cout << std::setw(4 * parse_depth_) << std::right << ' ';
+ {
+ std::cout << std::setw(4 * parse_depth_)
+ /* gcc 2.95.3 doesn't like this: << std::right */
+ << ' ';
+ }
}
} // anonymous namespace