~ubuntu-branches/ubuntu/karmic/tsclient/karmic-201101220039

« back to all changes in this revision

Viewing changes to debian/patches/11_underscore-in-configuration-profile.patch

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-05-10 10:58:13 UTC
  • Revision ID: james.westby@ubuntu.com-20060510105813-hqt28jsfhpybkavt
Tags: 0.140-3ubuntu1
* Sync with Debian
* debian/patches/01_appletcategory.patch:
  - fix the applet category
* debian/patches/01_icon.patch:
  - fix the icon path

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Fixes http://bugs.debian.org/362823
 
2
 
 
3
diff -urip tsclient-0.140/src/connect.c tsclient-0.140.fixed/src/connect.c
 
4
--- tsclient-0.140/src/connect.c        2005-05-10 02:50:19.000000000 +0200
 
5
+++ tsclient-0.140.fixed/src/connect.c  2006-04-16 03:56:11.000000000 +0200
 
6
@@ -1460,7 +1460,7 @@ on_btnSaveAs_clicked                   (
 
7
          if (lastdelim) {
 
8
         GtkWidget *opt = lookup_widget (main_window, "optProfileLauncher");
 
9
            lastdelim += strlen (home) + 1;
 
10
-           mi = gtk_menu_item_new_with_mnemonic (lastdelim);
 
11
+           mi = gtk_menu_item_new_with_label (lastdelim);
 
12
         g_signal_connect (G_OBJECT(mi), "activate", G_CALLBACK(tsc_quick_pick_activate), g_strdup (lastdelim));
 
13
         gtk_container_add (GTK_CONTAINER(GTK_OPTION_MENU(opt)->menu), mi);
 
14
         gtk_widget_show (mi);
 
15
diff -urip tsclient-0.140/src/rdpfile.c tsclient-0.140.fixed/src/rdpfile.c
 
16
--- tsclient-0.140/src/rdpfile.c        2005-05-10 02:54:24.000000000 +0200
 
17
+++ tsclient-0.140.fixed/src/rdpfile.c  2006-04-16 03:57:03.000000000 +0200
 
18
@@ -943,7 +943,7 @@ int rdp_load_profile_launcher (GtkWidget
 
19
   mnu = gtk_menu_new ();
 
20
   while (lptr) {
 
21
     name = g_strdup (lptr->data);
 
22
-    mi = gtk_menu_item_new_with_mnemonic (name);
 
23
+    mi = gtk_menu_item_new_with_label (name);
 
24
     g_signal_connect (G_OBJECT (mi), "activate", G_CALLBACK (tsc_quick_pick_activate), name);
 
25
     gtk_widget_ref (GTK_WIDGET (mi));
 
26
     gtk_container_add (GTK_CONTAINER (mnu), mi);