3.4.1:

2012-07-16  Murray Cumming  <murrayc@murrayc.com>

	Fix a markup typo in the Spanish translation.

	* docs/tutorial/es/es.po: This was breaking the 
	make check build.

2012-07-07  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	Appendix B: Add Exceptions in signal handlers.

	* docs/tutorial/C/gtkmm-tutorial-in.xml: Add a new section, "Exceptions in
	signal handlers" in Appendix B, "Signals". Bug #677104.

2012-06-27  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	Improve the Memory management chapter, Widgets section.

	* docs/tutorial/C/gtkmm-tutorial-in.xml: Remove a strange sentence on the
	disadvantages of class scope widgets. Don't mention Gtk::Object::set_manage().
	Bug #678566.

2012-06-14  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	Entry and ComboBox with Entry sections: key_press_event -> activate.

	* docs/tutorial/C/gtkmm-tutorial-in.xml: Entry::signal_activate() has been
	undeprecated. Describe Entry::signal_activate() instead of
	signal_key_press_event() for detecting a pressed Enter key.
	* examples/book/combobox/entry_complex/examplewindow.[h|cc]:
	* examples/book/combobox/entry_text/examplewindow.[h|cc]:
	* examples/others/cellrenderercustom/popupentry.[h|cc]: Replace
	signal_key_press_event() by Entry::signal_activate() where an Enter key press
	shall be detected. Bug #655489, comment 21.

2012-06-09  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	Add make_screenshots.

	* tools/make_screenshots/make_screenshots.sh:
	* tools/make_screenshots/make_screenshots.pl:
	* tools/make_screenshots/progs-and-figs.txt:
	* tools/make_screenshots/README: New files. Bug #677292.

2012-06-01  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	Update some screenshots.

	* docs/tutorial/C/figures/custom_container.png:
	* docs/tutorial/C/figures/custom_widget.png:
	* docs/tutorial/C/figures/dialogs_colorchooserdialog.png:
	* docs/tutorial/C/figures/dialogs_filechooser.png:
	* docs/tutorial/C/figures/dialogs_fontchooserdialog.png:
	* docs/tutorial/C/figures/range_widgets.png:
	* docs/tutorial/C/figures/recentchooserdialog.png:
	Update these screenshots to gtkmm3 status.

2012-05-28  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	ComboBox and Range widgets examples: Set an active ComboBox entry.

	* examples/book/combobox/complex/examplewindow.cc:
	* examples/book/combobox/entry_complex/examplewindow.cc:
	* examples/book/combobox/entry_text/examplewindow.cc:
	* examples/book/combobox/text/examplewindow.cc: Make a ComboBox entry active
	in the ExampleWindow constructor.
	* examples/book/range_widgets/examplewindow.[h|cc]: Make a ComboBox entry
	active in the ExampleWindow constructor. Rename on_menu_position() to
	on_combo_position().

2012-05-28  Kjell Ahlstedt <kjell.ahlstedt@bredband.net>

	SpinButton example: Fix orientation of vertical boxes.

	* examples/book/spinbutton/examplewindow.cc: Fix the orientation of the
	boxes that shall be vertical.

2012-04-17  Murray Cumming  <murrayc@murrayc.com>

	Range Widgets example: Really show a Position combo.

	* examples/book/range_widgets/examplewindow.[h|cc]:
	Convert the menu (which was once put in a deprecated OptionMenu)
	to a ComboBox and actually show it and handle it.