virt-viewer-display-vnc: Set uuid when using VNC

Notify user, that VNC does not provide uuid.

Set uuid to string "VNC does not provide guid".
This is more informative then just plain "Unknown".
User will now know WHY the GUID is unknown, when using remote-viewer.
This commit is contained in:
Lukas Venhoda 2015-04-29 17:39:34 +02:00 committed by Pavel Grunt
parent 772698a8a6
commit fc2add5827
2 changed files with 8 additions and 1 deletions

View File

@ -7,6 +7,7 @@ src/remote-viewer.c
src/virt-viewer-app.c
src/virt-viewer-auth.c
[type: gettext/glade] src/virt-viewer-auth.xml
src/virt-viewer-display-vnc.c
src/virt-viewer-main.c
src/virt-viewer-session-spice.c
src/virt-viewer-session-vnc.c

View File

@ -117,22 +117,28 @@ virt_viewer_display_vnc_initialized(VncDisplay *vnc G_GNUC_UNUSED,
VirtViewerDisplay *display)
{
gchar *name = NULL;
gchar *uuid = NULL;
VirtViewerSession *session = virt_viewer_display_get_session(display);
VirtViewerApp *app = virt_viewer_session_get_app(session);
g_object_get(app, "guest-name", &name, NULL);
g_object_get(app, "guest-name", &name, "uuid", &uuid, NULL);
if (name == NULL || *name == '\0') {
const gchar * vnc_name = vnc_display_get_name(vnc);
if (vnc_name != NULL) {
g_object_set(app, "guest-name", vnc_name, NULL);
}
}
if (uuid == NULL || *uuid == '\0') {
g_object_set(app, "uuid", _("VNC does not provide GUID"), NULL);
}
virt_viewer_display_set_show_hint(display,
VIRT_VIEWER_DISPLAY_SHOW_HINT_READY, TRUE);
g_signal_emit_by_name(display, "display-desktop-resize");
g_free(name);
g_free(uuid);
}
static void