2.99.4:

2011-03-31  Murray Cumming  <murrayc@murrayc.com>

	Double spaces after .s are unnecessary.

	* docs/tutorial/C/gtkmm-tutorial-in.xml: Remove unnecessary spaces.

2011-03-31  Murray Cumming  <murrayc@murrayc.com>

	Fix a minor grammatical mistake in the ComboBox section.

	* docs/tutorial/C/gtkmm-tutorial-in.xml: is, not are.

2011-03-24  Murray Cumming  <murrayc@murrayc.com>

  Remove use of Gtk::Application because it was removed from gtkmm 3.0.

	* examples/book/application/: Removed.
	* examples/Makefile.am: Remove mention of these examples.
	* examples/book/base/base.cc: Use Gtk::Main again instead of Gtk::Application.

2011-03-19  Murray Cumming  <murrayc@murrayc-x61>

	Split the Gtk::Application example into two.

	* examples/book/application/: Split this into:
	* examples/book/application/simple/ with no command-line handling, and:
	* examples/book/application/command_line_handling/ because custom
	handling of the command line makes the open signal (and maybe others) useless.
	As planned on bug #637445.

2011-03-18  Kalev Lember <kalev@smartlink.ee>

  ComboBox: Use set_entry_text_column() instead of set_text_column()

  * docs/tutorial/C/gtkmm-tutorial-in.xml:
  * examples/book/combobox/entry_complex/examplewindow.cc: Updated the
  files to use set_entry_text_column() instead of set_text_column() which
  was a leftover from ComboBoxEntry's removal.

2011-03-09  Murray Cumming  <murrayc@murrayc/cp,>

	Gtk::Application example: open an empty document if none is specified.

	* examples/book/application/exampleapplication.cc: Do not fail if no file
	was specified.

2011-03-09  Murray Cumming  <murrayc@murrayc.com>

	Gtk::Builder example: Remove a now non-existent property.

	* examples/book/builder/basic/basic.ui:
	* examples/book/builder/derived/basic.ui: The glade files mentioned the old
	GtkDialog::has-separator property which has now been removed. This caused a
	harmless stderr warning.

2011-03-04  Murray Cumming  <murrayc@murrayc.com>

	Added Gtk::Application example.

	* examples/Makefile.am:
	* examples/book/application/: Show how to do command-line parsing.

	There is still a warning at the end which we should deal with:
	(example:17496): Gtk-CRITICAL **: gtk_main_quit: assertion `main_loops != NULL' failed

2011-02-22  Murray Cumming  <murrayc@murrayc.com>

	Code-style changes.

	* examples/book/grid/examplewindow.[h|cc]: Slight style changes, for
	consistency with the other examples.

2011-02-22  David King  <davidk@openismus.com>

	Add Gtk::Tooltip example to the tutorial

	* docs/tutorial/C/figures/tooltip.png:
	* docs/tutorial/C/gtkmm-tutorial-in.xml:
	* docs/tutorial/Makefile.am: Add an example for Gtk::Tooltip to the
	tutorial.

2011-02-21  David King  <davidk@openismus.com>

	Add basic information on Gtk::Grid

	* docs/tutorial/C/figures/grid.png: Add new screenshot.
	* docs/tutorial/C/gtkmm-tutorial-in.xml: Add section in multi-widget
	container chapter on Gtk::Grid.
	* docs/tutorial/Makefile.am:
	* examples/.gitignore:
	* examples/Makefile.am: Update.
	* examples/book/grid/examplewindow.cc:
	* examples/book/grid/examplewindow.h:
	* examples/book/grid/main.cc: Add example code for Gtk::Grid.

2011-02-18  David King  <davidk@openismus.com>

	Minor documentation updates for gtkmm 3

	* docs/tutorial/C/gtkmm-tutorial-in.xml: Replace gtkmm 2.4 information
	with gtkmm 3.0.

2011-02-16  David King  <davidk@openismus.com>

	Update AUTHORS, README and remove README.SUN

	* AUTHORS, README: Update.
	* README.SUN: Remove, as it refers only to an old version of gtkmm,
	not gtkmm-documentation.

2011-02-14  David King  <davidk@openismus.com>

	Install the documentation into a gtkmm-3.0 path

	* docs/tutorial/Makefile.am: Use gtkmm-3.0 rather than gtkmm-2.4 for
	the documentation path.

2011-02-12  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	Modify the custom_container and custom_widget examples.

	* .gitignore: Add *~ (gedit's backup files).
	* autogen.sh: Add test that mm-common is installed.
	* examples/book/custom/custom_widget/mycontainer.[h|cc]:
	* examples/book/custom/custom_container/mywidget.[h|cc]: Change int* to
	int& in get_preferred_xxx_vfunc().
	* examples/book/custom/custom_widget/custom_gtk.css: Minor change in comment.
	Bug 639073, comment 19. Bug 628713 (autogen.sh).