[gnome-boxes] properties-*: troubleshooting_log -> troubleshoot_log



commit f23b7f9a58f6da661bdc97a93eaf241274cfb9fe
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date:   Fri Dec 5 19:31:14 2014 +0000

    properties-*: troubleshooting_log -> troubleshoot_log
    
    Use shorter name since it's not ambiguous.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=741047

 data/ui/properties-toolbar.ui |    4 ++--
 data/ui/properties-window.ui  |    2 +-
 src/properties-toolbar.vala   |    2 +-
 src/properties-window.vala    |    4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/data/ui/properties-toolbar.ui b/data/ui/properties-toolbar.ui
index ff3c816..6e858ed 100644
--- a/data/ui/properties-toolbar.ui
+++ b/data/ui/properties-toolbar.ui
@@ -61,7 +61,7 @@
 
     <!-- Troubleshooting log page -->
     <child>
-      <object class="GtkHeaderBar" id="troubleshooting_log">
+      <object class="GtkHeaderBar" id="troubleshoot_log">
         <property name="visible">True</property>
         <property name="show-close-button">True</property>
         <property name="title" translatable="yes">Troubleshooting Log</property>
@@ -118,7 +118,7 @@
       </object>
 
       <packing>
-        <property name="name">troubleshooting_log</property>
+        <property name="name">troubleshoot_log</property>
       </packing>
     </child>
 
diff --git a/data/ui/properties-window.ui b/data/ui/properties-window.ui
index 3b2b8a5..3ca6de7 100644
--- a/data/ui/properties-window.ui
+++ b/data/ui/properties-window.ui
@@ -59,7 +59,7 @@
               </object>
 
               <packing>
-                <property name="name">troubleshooting_log</property>
+                <property name="name">troubleshoot_log</property>
               </packing>
             </child>
 
diff --git a/src/properties-toolbar.vala b/src/properties-toolbar.vala
index c717c6e..d84d613 100644
--- a/src/properties-toolbar.vala
+++ b/src/properties-toolbar.vala
@@ -61,7 +61,7 @@ private class Boxes.PropertiesToolbar: Gtk.Stack {
 
     [GtkCallback]
     private void on_copy_clipboard_clicked () requires (page == PropsWindowPage.TROUBLESHOOTING_LOG) {
-        props_window.copy_troubleshooting_log_to_clipboard ();
+        props_window.copy_troubleshoot_log_to_clipboard ();
     }
 
     [GtkCallback]
diff --git a/src/properties-window.vala b/src/properties-window.vala
index 898f52e..fa7142e 100644
--- a/src/properties-window.vala
+++ b/src/properties-window.vala
@@ -8,7 +8,7 @@ private enum Boxes.PropsWindowPage {
 
 [GtkTemplate (ui = "/org/gnome/Boxes/ui/properties-window.ui")]
 private class Boxes.PropertiesWindow: Gtk.Window, Boxes.UI {
-    public const string[] page_names = { "main", "troubleshooting_log" };
+    public const string[] page_names = { "main", "troubleshoot_log" };
 
     public UIState previous_ui_state { get; protected set; }
     public UIState ui_state { get; protected set; }
@@ -53,7 +53,7 @@ private class Boxes.PropertiesWindow: Gtk.Window, Boxes.UI {
         page = PropsWindowPage.TROUBLESHOOTING_LOG;
     }
 
-    public void copy_troubleshooting_log_to_clipboard () {
+    public void copy_troubleshoot_log_to_clipboard () {
         var log = troubleshoot_log.view.buffer.text;
         var clipboard = Gtk.Clipboard.get_for_display (get_display (), Gdk.SELECTION_CLIPBOARD);
 


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