[vinagre] Include config.h where necessary



commit 71b37ec086fe9390fddf52109cb216c77290706a
Author: Kjartan Maraas <kmaraas gnome org>
Date:   Fri Mar 25 15:04:08 2011 +0100

    Include config.h where necessary
    
    Add â??#include <config.h>â?? to all files that include translatable
    strings, so that they appear translated in the UI. Fixes bug 645861.

 plugins/rdp/vinagre-rdp-tab.c                      |    1 +
 plugins/reverse-vnc/vinagre-reverse-vnc-listener.c |    1 +
 plugins/spice/vinagre-spice-tab.c                  |    1 +
 plugins/ssh/vinagre-ssh-tab.c                      |    1 +
 plugins/vnc/vinagre-vnc-connection.c               |    1 +
 plugins/vnc/vinagre-vnc-tab.c                      |    1 +
 vinagre/vinagre-bookmarks-migration.c              |    1 +
 vinagre/vinagre-bookmarks-tree.c                   |    1 +
 vinagre/vinagre-bookmarks-ui.c                     |    1 +
 vinagre/vinagre-bookmarks.c                        |    1 +
 vinagre/vinagre-cache-prefs.c                      |    1 +
 vinagre/vinagre-connection.c                       |    1 +
 vinagre/vinagre-mdns.c                             |    1 +
 vinagre/vinagre-options.c                          |    1 +
 vinagre/vinagre-plugin-dialog.c                    |    1 +
 vinagre/vinagre-prefs.c                            |    1 +
 vinagre/vinagre-tube-handler.c                     |    1 +
 17 files changed, 17 insertions(+), 0 deletions(-)
---
diff --git a/plugins/rdp/vinagre-rdp-tab.c b/plugins/rdp/vinagre-rdp-tab.c
index 2c7ff4e..8346d8f 100644
--- a/plugins/rdp/vinagre-rdp-tab.c
+++ b/plugins/rdp/vinagre-rdp-tab.c
@@ -19,6 +19,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <sys/types.h>
 #include <sys/wait.h>
 
diff --git a/plugins/reverse-vnc/vinagre-reverse-vnc-listener.c b/plugins/reverse-vnc/vinagre-reverse-vnc-listener.c
index 3e0e2c8..47917b1 100644
--- a/plugins/reverse-vnc/vinagre-reverse-vnc-listener.c
+++ b/plugins/reverse-vnc/vinagre-reverse-vnc-listener.c
@@ -18,6 +18,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <sys/types.h>
diff --git a/plugins/spice/vinagre-spice-tab.c b/plugins/spice/vinagre-spice-tab.c
index 921a3d6..f605034 100644
--- a/plugins/spice/vinagre-spice-tab.c
+++ b/plugins/spice/vinagre-spice-tab.c
@@ -20,6 +20,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include <spice-client-glib-2.0/spice-session.h>
 #include <spice-client-glib-2.0/spice-audio.h>
diff --git a/plugins/ssh/vinagre-ssh-tab.c b/plugins/ssh/vinagre-ssh-tab.c
index d9426f0..43b0147 100644
--- a/plugins/ssh/vinagre-ssh-tab.c
+++ b/plugins/ssh/vinagre-ssh-tab.c
@@ -19,6 +19,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include <vte/vte.h>
 #include <gdk/gdkkeysyms.h>
diff --git a/plugins/vnc/vinagre-vnc-connection.c b/plugins/vnc/vinagre-vnc-connection.c
index 37aefa3..8a8ad87 100644
--- a/plugins/vnc/vinagre-vnc-connection.c
+++ b/plugins/vnc/vinagre-vnc-connection.c
@@ -19,6 +19,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include <stdlib.h>
 #include <vinagre/vinagre-utils.h>
diff --git a/plugins/vnc/vinagre-vnc-tab.c b/plugins/vnc/vinagre-vnc-tab.c
index 16b57a1..7a43701 100644
--- a/plugins/vnc/vinagre-vnc-tab.c
+++ b/plugins/vnc/vinagre-vnc-tab.c
@@ -19,6 +19,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include <vncdisplay.h>
 #include <gdk/gdkkeysyms.h>
diff --git a/vinagre/vinagre-bookmarks-migration.c b/vinagre/vinagre-bookmarks-migration.c
index 4105e4a..218b93d 100644
--- a/vinagre/vinagre-bookmarks-migration.c
+++ b/vinagre/vinagre-bookmarks-migration.c
@@ -23,6 +23,7 @@
  * a XML one. The new format is used in Vinagre 2.25.
  */
 
+#include <config.h>
 #include <glib.h>
 #include <glib/gstdio.h>
 #include <gio/gio.h>
diff --git a/vinagre/vinagre-bookmarks-tree.c b/vinagre/vinagre-bookmarks-tree.c
index ae3358b..2f9f072 100644
--- a/vinagre/vinagre-bookmarks-tree.c
+++ b/vinagre/vinagre-bookmarks-tree.c
@@ -18,6 +18,7 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include "vinagre-bookmarks-tree.h"
 #include "vinagre-bookmarks-entry.h"
 #include "vinagre-bookmarks.h"
diff --git a/vinagre/vinagre-bookmarks-ui.c b/vinagre/vinagre-bookmarks-ui.c
index 7869cfb..a9a59e1 100644
--- a/vinagre/vinagre-bookmarks-ui.c
+++ b/vinagre/vinagre-bookmarks-ui.c
@@ -18,6 +18,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <string.h>
 #include <glib/gi18n.h>
 
diff --git a/vinagre/vinagre-bookmarks.c b/vinagre/vinagre-bookmarks.c
index cc65d59..ad06e65 100644
--- a/vinagre/vinagre-bookmarks.c
+++ b/vinagre/vinagre-bookmarks.c
@@ -18,6 +18,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <gtk/gtk.h>
 #include <glib/gi18n.h>
 #include <gio/gio.h>
diff --git a/vinagre/vinagre-cache-prefs.c b/vinagre/vinagre-cache-prefs.c
index c018104..c962321 100644
--- a/vinagre/vinagre-cache-prefs.c
+++ b/vinagre/vinagre-cache-prefs.c
@@ -18,6 +18,7 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include "vinagre-cache-prefs.h"
 #include "vinagre-dirs.h"
diff --git a/vinagre/vinagre-connection.c b/vinagre/vinagre-connection.c
index 4f1eb09..8f13273 100644
--- a/vinagre/vinagre-connection.c
+++ b/vinagre/vinagre-connection.c
@@ -18,6 +18,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <glib/gi18n.h>
 #include <gio/gio.h>
diff --git a/vinagre/vinagre-mdns.c b/vinagre/vinagre-mdns.c
index 2017f25..0b08d90 100644
--- a/vinagre/vinagre-mdns.c
+++ b/vinagre/vinagre-mdns.c
@@ -18,6 +18,7 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <avahi-gobject/ga-service-browser.h>
 #include <avahi-gobject/ga-service-resolver.h>
 #include <avahi-common/malloc.h>
diff --git a/vinagre/vinagre-options.c b/vinagre/vinagre-options.c
index 139da7d..b4fd099 100644
--- a/vinagre/vinagre-options.c
+++ b/vinagre/vinagre-options.c
@@ -18,6 +18,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include "vinagre-options.h"
 #include "vinagre-connection.h"
 #include "vinagre-window.h"
diff --git a/vinagre/vinagre-plugin-dialog.c b/vinagre/vinagre-plugin-dialog.c
index 449c3b3..24607cd 100644
--- a/vinagre/vinagre-plugin-dialog.c
+++ b/vinagre/vinagre-plugin-dialog.c
@@ -19,6 +19,7 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include <libpeas-gtk/peas-gtk-plugin-manager.h>
 
diff --git a/vinagre/vinagre-prefs.c b/vinagre/vinagre-prefs.c
index a33fa1d..36cf73d 100644
--- a/vinagre/vinagre-prefs.c
+++ b/vinagre/vinagre-prefs.c
@@ -18,6 +18,7 @@
  * with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <glib/gi18n.h>
 #include "vinagre-prefs.h"
 #include "vinagre-utils.h"
diff --git a/vinagre/vinagre-tube-handler.c b/vinagre/vinagre-tube-handler.c
index 208870f..16e4f9e 100644
--- a/vinagre/vinagre-tube-handler.c
+++ b/vinagre/vinagre-tube-handler.c
@@ -21,6 +21,7 @@
  *      Arnaud Maillet <arnaud maillet collabora co uk>
  */
 
+#include <config.h>
 #include <glib-object.h>
 #include <glib/gi18n.h>
 



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