[moserial] remove deprecated hide_all function, use hide instead



commit 9abab954e9361beb0c1bc8e8ab9a68ec202ca859
Author: Michael J. Chudobiak <mjc avtechpulse com>
Date:   Wed Aug 17 09:40:19 2011 -0400

    remove deprecated hide_all function, use hide instead

 src/PreferencesDialog.vala     |    2 +-
 src/ReceiveProgressDialog.vala |    2 +-
 src/SendProgressDialog.vala    |    2 +-
 src/SettingsDialog.vala        |    6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/PreferencesDialog.vala b/src/PreferencesDialog.vala
index 8fecf7f..7668a9c 100644
--- a/src/PreferencesDialog.vala
+++ b/src/PreferencesDialog.vala
@@ -128,7 +128,7 @@ public class moserial.PreferencesDialog : GLib.Object
                 hide();
         }
         public bool hide() {
-                dialog.hide_all();
+                dialog.hide();
                 return true;
         }
         public void systemFontToggled(ToggleButton button)
diff --git a/src/ReceiveProgressDialog.vala b/src/ReceiveProgressDialog.vala
index b9b1431..fb46b60 100644
--- a/src/ReceiveProgressDialog.vala
+++ b/src/ReceiveProgressDialog.vala
@@ -44,7 +44,7 @@ public class moserial.ReceiveProgressDialog : GLib.Object
         }
 
         public bool hide() {
-                dialog.hide_all();
+                dialog.hide();
                 return true;
         }
         
diff --git a/src/SendProgressDialog.vala b/src/SendProgressDialog.vala
index 473a735..59bf032 100644
--- a/src/SendProgressDialog.vala
+++ b/src/SendProgressDialog.vala
@@ -44,7 +44,7 @@ public class moserial.SendProgressDialog : GLib.Object
         }
 
         public bool hide() {
-                dialog.hide_all();
+                dialog.hide();
                 return true;
         }
         
diff --git a/src/SettingsDialog.vala b/src/SettingsDialog.vala
index 5a7b89b..92f046e 100644
--- a/src/SettingsDialog.vala
+++ b/src/SettingsDialog.vala
@@ -162,13 +162,13 @@ public class moserial.SettingsDialog : GLib.Object
         }
 
         public bool hide (Gtk.Widget w, Gdk.Event event) {
-                dialog.hide_all ();
+                dialog.hide ();
                 return true;
         }
 
         public void cancel (Widget w) {
                 currentSettings=null;
-		dialog.hide_all ();
+		dialog.hide ();
         }
 
         public void ok (Widget w) {
@@ -202,6 +202,6 @@ public class moserial.SettingsDialog : GLib.Object
                 settings = new Settings(device, baudRate, dataBits, stopBits, parity, handshake, accessMode, pLocalEcho);
                 currentSettings = settings;
                 this.updateSettings(currentSettings);
-                dialog.hide_all ();
+                dialog.hide ();
         }
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]