diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/app-menu-item.c | 8 | ||||
-rw-r--r-- | src/app-menu-item.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/app-menu-item.c b/src/app-menu-item.c index 5fc2a9c..b1b2a02 100644 --- a/src/app-menu-item.c +++ b/src/app-menu-item.c @@ -309,3 +309,11 @@ app_menu_item_get_desktop (AppMenuItem * appitem) AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(appitem); return priv->desktop; } + +/* Get the dynamic items added onto the end of + and app entry. */ +GList * +app_menu_item_get_items (AppMenuItem * appitem) +{ + return NULL; +} diff --git a/src/app-menu-item.h b/src/app-menu-item.h index 583d50d..fe16c75 100644 --- a/src/app-menu-item.h +++ b/src/app-menu-item.h @@ -60,6 +60,7 @@ guint app_menu_item_get_count (AppMenuItem * appitem); IndicateListenerServer * app_menu_item_get_server (AppMenuItem * appitem); const gchar * app_menu_item_get_name (AppMenuItem * appitem); const gchar * app_menu_item_get_desktop (AppMenuItem * appitem); +GList * app_menu_item_get_items (AppMenuItem * appitem); G_END_DECLS |