change Controllable::set_value() API to include grouped control consideration.
[ardour.git] / libs / gtkmm2ext / gtkapplication_x11.c
index dd16e36c09e391d0efacb8ee3a1791eccc2f0d21..615f48f6d6086ca51032d87631ca87042799cf46 100644 (file)
@@ -1,4 +1,4 @@
-/* GTK+ Integration with platform-specific application-wide features 
+/* GTK+ Integration with platform-specific application-wide features
  * such as the OS X menubar and application delegate concepts (for X11)
  *
  * Copyright (C) 2007 Pioneer Research Center USA, Inc.
 
 #include <gtkmm2ext/gtkapplication.h>
 
-int  
-gtk_application_init ()
+int
+gtk_application_init (void)
 {
        return 0;
 }
 
-void gtk_application_cleanup ()
+void gtk_application_cleanup (void)
 {
 }
 
-void                      
-gtk_application_set_menu_bar       (GtkMenuShell    *menu_shell)
+void
+gtk_application_set_menu_bar (GtkMenuShell* menushell)
+{
+       (void) menushell;
+}
+
+void
+gtk_application_add_app_menu_item (GtkApplicationMenuGroup* group, GtkMenuItem* item)
 {
+       (void) group;
+       (void) item;
 }
 
-void                      
-gtk_application_add_app_menu_item   (GtkApplicationMenuGroup *group,
-                                    GtkMenuItem     *menu_item)
+void
+gtk_application_ready (void)
 {
 }
 
 void
-gtk_application_ready ()
+gtk_application_hide (void)
 {
 }