~ubuntu-branches/ubuntu/lucid/vino/lucid

« back to all changes in this revision

Viewing changes to server/vino-server.c

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-09-03 11:55:06 UTC
  • mfrom: (1.1.12 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20070903115506-4k8bsvttfir182mt
Tags: 2.19.92-0ubuntu1
* New upstream release:
  - Fixes
    - Bug #353304 - using Alt-Gr from a Windows VNC client to vino (LP: #34805)
    - Bug #383147 - beryl windows manager does not support vino only metacity
  - Translations: ca, da, de, et, fr, ja, ko, lt, mk, pl, pt_BR

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
vino_server_client_disconnected (VinoServer *server,
182
182
                                 VinoClient *client)
183
183
{
184
 
  if (vino_status_icon_remove_client (server->priv->icon, client))
185
 
    {
186
 
      g_object_unref (server->priv->icon);
187
 
      server->priv->icon = NULL;
 
184
  if (server->priv->icon)
 
185
    if (vino_status_icon_remove_client (server->priv->icon, client))
 
186
      {
 
187
        g_object_unref (server->priv->icon);
 
188
        server->priv->icon = NULL;
188
189
 
189
 
      vino_server_lock_screen(server);
190
 
    }
 
190
        vino_server_lock_screen (server);
 
191
      }
191
192
}
192
193
static void
193
194
vino_server_handle_client_gone (rfbClientPtr rfb_client)