diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-26 07:41:12 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-26 07:41:12 +0800 |
commit | 51dfe1d703d2ea1f613ad68deab3a1926a790de4 (patch) | |
tree | ebe67bbc235fe25bd4e836aa8d11677e14e6c3b9 /embed | |
parent | 42be540e47b88923fc6f1155be3eac3e20ec2d32 (diff) | |
download | gsoc2013-epiphany-51dfe1d703d2ea1f613ad68deab3a1926a790de4.tar.gz gsoc2013-epiphany-51dfe1d703d2ea1f613ad68deab3a1926a790de4.tar.zst gsoc2013-epiphany-51dfe1d703d2ea1f613ad68deab3a1926a790de4.zip |
Use stock icon for open. Fixes bug #135765.
2004-03-25 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/ContentHandler.cpp: (MIMEConfirmAction):
Use stock icon for open. Fixes bug #135765.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index dd192ef6a..8ae828424 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -41,6 +41,7 @@ #include "ephy-embed-single.h" #include "ephy-embed-shell.h" #include "ephy-file-chooser.h" +#include "ephy-stock-icons.h" #include "ephy-debug.h" #include <gtk/gtkimage.h> @@ -239,7 +240,7 @@ NS_METHOD GContentHandler::MIMEConfirmAction () action_label = (mAction == CONTENT_ACTION_OPEN) || (mAction == CONTENT_ACTION_OPEN_TMP) ? - _("_Open") : _("_Download"); + GTK_STOCK_OPEN : _("_Download"); dialog = gtk_dialog_new_with_buttons ("", parentWindow, GTK_DIALOG_NO_SEPARATOR, |