diff options
author | Antonio Fernandez <antonio.fernandez@aentos.es> | 2012-08-31 12:28:33 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2012-11-14 13:52:46 +0100 |
commit | a5e35f8d8042c6c8b444de9eb8162bf8e917f533 (patch) | |
tree | 48ff03873d710c9484d5a15f4bc64ce9d8a39d76 /vcl/inc | |
parent | 34839e9a56739e79cbae2a843b51ea2a0b540fc9 (diff) |
Added code for special items.
Change-Id: I8fb03bee33da052654559329a84d9a753d091ae1
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/unx/gtk/gtksalmenu.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/inc/unx/gtk/gtksalmenu.hxx b/vcl/inc/unx/gtk/gtksalmenu.hxx index 5525b19333cd..2d4cbe321297 100644 --- a/vcl/inc/unx/gtk/gtksalmenu.hxx +++ b/vcl/inc/unx/gtk/gtksalmenu.hxx @@ -86,9 +86,10 @@ public: virtual void SetActionGroup( GActionGroup* pActionGroup ) { mpActionGroup = pActionGroup; } virtual GActionGroup* GetActionGroup() { return mpActionGroup; } - virtual void SetNativeItemText( unsigned nSection, unsigned nItemPos, const rtl::OUString& rText ); - virtual void SetNativeItemCommand( unsigned nSection, unsigned nItemPos, GtkSalMenuItem* pItem, const gchar* aCommandStr ); - virtual void SetNativeEnableItem( gchar* aCommand, gboolean bEnable ); + void SetNativeItemText( unsigned nSection, unsigned nItemPos, const rtl::OUString& rText ); + void SetNativeItemCommand( unsigned nSection, unsigned nItemPos, GtkSalMenuItem* pItem, const gchar* aCommandStr ); + void SetNativeEnableItem( gchar* aCommand, gboolean bEnable ); + void NativeCheckItem( unsigned nSection, unsigned nItemPos, GtkSalMenuItem* pItem, gboolean bCheck ); }; class GtkSalMenuItem : public SalMenuItem |