aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-command-manager.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-11-05 07:59:35 +0800
committerChristian Persch <chpe@src.gnome.org>2003-11-05 07:59:35 +0800
commitbb356f3a3548ce549e4cb3a4d30371ea0ac6f564 (patch)
treed345f45bb5374ec4b39059eab454d7f5a26d7209 /embed/ephy-command-manager.h
parent0258ff08cfd0eff38e1d13704ce0d47c99706df5 (diff)
downloadgsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.tar
gsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.tar.gz
gsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.tar.bz2
gsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.tar.lz
gsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.tar.xz
gsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.tar.zst
gsoc2013-epiphany-bb356f3a3548ce549e4cb3a4d30371ea0ac6f564.zip
Renamed to get_command_state to can_do_command.
2003-11-05 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-command-manager.c: (ephy_command_manager_can_do_command): * embed/ephy-command-manager.h: * embed/mozilla/mozilla-embed.cpp: * src/ephy-window.c: (edit_menu_show_cb): Renamed to get_command_state to can_do_command.
Diffstat (limited to 'embed/ephy-command-manager.h')
-rw-r--r--embed/ephy-command-manager.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/embed/ephy-command-manager.h b/embed/ephy-command-manager.h
index c8eaf0514..c0dabc3c0 100644
--- a/embed/ephy-command-manager.h
+++ b/embed/ephy-command-manager.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000, 2001, 2002 Marco Pesenti Gritti
+ * Copyright (C) 2000-2003 Marco Pesenti Gritti
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -14,6 +14,8 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
*/
#ifndef EPHY_COMMAND_MANAGER_H
@@ -40,7 +42,7 @@ struct EphyCommandManagerClass
void (* do_command) (EphyCommandManager *manager,
const char *command);
- gboolean (* get_command_state) (EphyCommandManager *manager,
+ gboolean (* can_do_command) (EphyCommandManager *manager,
const char *command);
/* Signals */
@@ -54,7 +56,7 @@ GType ephy_command_manager_get_type (void);
void ephy_command_manager_do_command (EphyCommandManager *manager,
const char *command);
-gboolean ephy_command_manager_get_command_state (EphyCommandManager *manager,
+gboolean ephy_command_manager_can_do_command (EphyCommandManager *manager,
const char *command);
G_END_DECLS