diff options
author | Murray Cumming <murrayc@murrayc.com> | 2015-07-15 13:22:10 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2015-07-15 13:22:10 +0200 |
commit | e1dba38d6b9a6d08c6ddb868a9dae825f4c10932 (patch) | |
tree | 029ea181d487290329debc5461a2ab5f166f31c8 | |
parent | d5fbe0d1e69d81aae918834c3a0c561b99f2791f (diff) | |
download | glibmm-e1dba38d6b9a6d08c6ddb868a9dae825f4c10932.tar.gz |
Examples: OptionGroup: Make the args public again to fix the build.
-rw-r--r-- | examples/options/main.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/options/main.cc b/examples/options/main.cc index d693d09d..fcda4a98 100644 --- a/examples/options/main.cc +++ b/examples/options/main.cc @@ -35,6 +35,7 @@ private: bool on_option_arg_filename(const Glib::ustring& option_name, const std::string& value, bool has_value); +public: //These members should live as long as the OptionGroup to which they are added, //and as long as the OptionContext to which that OptionGroup is added. int m_arg_foo; |