StatusIcon.vala
[gitlive] / StatusIcon.vala
index 35c4005..3a7fc30 100644 (file)
@@ -94,7 +94,7 @@ class StatusIconA : StatusIcon {
         
     }
     
-    class MenuA : Menu
+    class MenuA : Gtk.Menu
     {
         public ImageMenuItem pause;
         public ImageMenuItem resume;
@@ -112,7 +112,7 @@ class StatusIconA : StatusIcon {
             
             public ImageMenuItemA()
             {
-                this.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
+                this.set_from_stock( Gtk.Stock.MEDIA_PAUSE );
                 this.label= "Pause Commits";
                 this.always_show_image = true;
                 this.accel_group = null;
@@ -122,10 +122,10 @@ class StatusIconA : StatusIcon {
                     
                     //GitMonitor.GitMonitor.stop();
                    // this.el.label  = status ? 'Resume' : 'Pause';
-                    statusicon.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
+                    statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE );
                     
                     
-                })
+                });
                 //    id : 'pause',
             }
             
@@ -135,7 +135,7 @@ class StatusIconA : StatusIcon {
             
             public ImageMenuItemB()
             {
-                this.set_from_stock( Gtk.STOCK_MEDIA_PLAY );
+                this.set_from_stock( Gtk.Stock.MEDIA_PLAY );
                 this.label= "Start Commits";
                 this.always_show_image = true;
                 this.accel_group = null;
@@ -146,10 +146,10 @@ class StatusIconA : StatusIcon {
                     
                     //
                    // this.el.label  = status ? 'Resume' : 'Pause';
-                    statusicon.set_from_stock( Gtk.STOCK_MEDIA_PLAY );
+                    statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );
                     
                     
-                })
+                });
                 //    id : 'pause',
             }