diff options
author | Murray Cumming <murrayc@usa.net> | 2003-05-02 16:07:24 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2003-05-02 16:07:24 +0000 |
commit | 5d8b9401508008977545e89a2be7ad1babae151b (patch) | |
tree | aece7ecf2a5abe98f2a12643e970db02e5150938 /examples/markup | |
parent | 4588a3f9105ec5ad4e70717f24370d64bc8c8a1f (diff) | |
download | glibmm-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.cc | 6 |
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 |