Use gtk properties stock icon for document dialog menu entry.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9723 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Spray 2005-03-20 11:38:58 +00:00
parent d249612ccb
commit 7dc95c602b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-03-20 John Spray <spray_john@users.sf.net>
* ghelpers.C: use Gtk::Stock::PROPERTIES icon for document
dialog.
2005-03-10 John Spray <spray_john@users.sf.net>
* GGraphics, GVSpace, GBox: update to use new ghelpers functions

View File

@ -109,6 +109,8 @@ Gtk::BuiltinStockID getGTKStockIcon(FuncRequest const & func)
return Gtk::Stock::SPELL_CHECK;
else if (func.argument == "prefs")
return Gtk::Stock::PREFERENCES;
else if (func.argument == "document")
return Gtk::Stock::PROPERTIES;
else
return Gtk::Stock::MISSING_IMAGE;
break;