Merge lp:~cjcurran/indicator-session/beta-fixes into lp:indicator-session/0.1

Proposed by Conor Curran
Status: Rejected
Rejected by: Conor Curran
Proposed branch: lp:~cjcurran/indicator-session/beta-fixes
Merge into: lp:indicator-session/0.1
Diff against target: 49 lines (+6/-6)
1 file modified
src/udev-mgr.c (+6/-6)
To merge this branch: bzr merge lp:~cjcurran/indicator-session/beta-fixes
Reviewer Review Type Date Requested Status
Ted Gould Pending
Review via email: mp+72937@code.launchpad.net

Description of the change

fixes for beta

To post a comment you must log in.

Unmerged revisions

192. By Conor Curran

beta fixes

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/udev-mgr.c'
2--- src/udev-mgr.c 2011-08-25 16:05:41 +0000
3+++ src/udev-mgr.c 2011-08-25 18:30:48 +0000
4@@ -251,7 +251,7 @@
5 DBUSMENU_MENUITEM_PROP_LABEL,
6 format_device_name (self,
7 g_strdup(manufacturer),
8- "Webcam"));
9+ g_strdup("Webcam")));
10 }
11
12 g_hash_table_insert (self->webcams_present,
13@@ -326,7 +326,7 @@
14 DBUSMENU_MENUITEM_PROP_LABEL,
15 format_device_name (self,
16 g_strdup(manufacturer),
17- "Scanner"));
18+ g_strdup("Scanner")));
19 }
20
21 gchar* random_scanner_name = g_strdup_printf("%p--scanner", self);
22@@ -391,7 +391,7 @@
23 DBUSMENU_MENUITEM_PROP_LABEL,
24 format_device_name (self,
25 g_strdup(manufacturer),
26- "Scanner"));
27+ g_strdup("Scanner")));
28 }
29 g_hash_table_insert (self->scanners_present,
30 g_strdup(vendor),
31@@ -458,7 +458,7 @@
32 DBUSMENU_MENUITEM_PROP_LABEL,
33 format_device_name (self,
34 g_strdup(manufacturer),
35- "Scanner"));
36+ g_strdup("Scanner")));
37 }
38
39 g_hash_table_insert (self->scanners_present,
40@@ -530,7 +530,7 @@
41
42 gchar* lowered = g_ascii_strdown (brand, -1);
43 lowered[0] = g_ascii_toupper (lowered[0]);
44- gchar* label = g_strdup_printf(_("%s %s"), lowered, type);
45+ gchar* label = g_strdup_printf("%s %s", lowered, type);
46 g_free (lowered);
47- return label;
48+ return _(label);
49 }

Subscribers

People subscribed via source and target branches