ekiga r6688 - trunk/src/gui
- From: jpuydt svn gnome org
- To: svn-commits-list gnome org
- Subject: ekiga r6688 - trunk/src/gui
- Date: Sun, 24 Aug 2008 16:54:18 +0000 (UTC)
Author: jpuydt
Date: Sun Aug 24 16:54:18 2008
New Revision: 6688
URL: http://svn.gnome.org/viewvc/ekiga?rev=6688&view=rev
Log:
Fixed forgotten case of bug #548950.
Modified:
trunk/src/gui/main.cpp
Modified: trunk/src/gui/main.cpp
==============================================================================
--- trunk/src/gui/main.cpp (original)
+++ trunk/src/gui/main.cpp Sun Aug 24 16:54:18 2008
@@ -1363,8 +1363,11 @@
g_return_if_fail (self != NULL);
mw = gm_mw_get_mw (GTK_WIDGET (self));
g_return_if_fail (mw != NULL);
- std::string message = _("added audio output device ") + device.GetString();
- gm_main_window_flash_message (GTK_WIDGET (self), "%s", message.c_str ());
+ gchar* message = NULL;
+
+ message = g_strdup_printf (_("Added audio output device %s"), device.GetString().c_str ());
+ gm_main_window_flash_message (GTK_WIDGET (self), "%s", message);
+ g_free (message);
if (!isDesired && !mw->current_call)
gm_main_window_add_device_dialog_show (GTK_WIDGET (self), device, AudioOutput);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]