[gedit-plugins] Fix build



commit 5312491191dd5b794d359dea850e32a29a21ed37
Author: Paolo Borelli <pborelli gnome org>
Date:   Wed Apr 22 21:53:58 2015 +0200

    Fix build

 plugins/findinfiles/dialog.vala       |    2 +-
 plugins/findinfiles/result-panel.vala |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plugins/findinfiles/dialog.vala b/plugins/findinfiles/dialog.vala
index 13c4e35..ff189a5 100644
--- a/plugins/findinfiles/dialog.vala
+++ b/plugins/findinfiles/dialog.vala
@@ -71,7 +71,7 @@ class FindDialog : Gtk.Dialog {
         if (Gtk.Settings.get_default ().gtk_dialogs_use_header) {
             var header_bar = new Gtk.HeaderBar ();
 
-            header_bar.set_title _("Find in Files");
+            header_bar.set_title (_("Find in Files"));
             header_bar.set_show_close_button (true);
 
             this.set_titlebar (header_bar);
diff --git a/plugins/findinfiles/result-panel.vala b/plugins/findinfiles/result-panel.vala
index f187056..03b9e55 100644
--- a/plugins/findinfiles/result-panel.vala
+++ b/plugins/findinfiles/result-panel.vala
@@ -214,7 +214,7 @@ class ResultPanel : Overlay {
 
         // The stop button is showed in the bottom-left corner of the TreeView
         stop_button = new Button.from_icon_name ("process-stop-symbolic", IconSize.BUTTON);
-        stop_button.set_tooltip_text _("Stop the search");
+        stop_button.set_tooltip_text (_("Stop the search"));
         stop_button.set_visible (false);
         stop_button.set_valign (Align.END);
         stop_button.set_halign (Align.END);


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