FACT++  1.0
bool SkypeClient::Minimize ( )
inlineprivate

Definition at line 282 of file skypeclient.cc.

283  {
284  DBusMessage *send = GetDBusMessage("MINIMIZE");
285  if (!send)
286  return false;
287 
288  // Send the message and ignore the reply
289  const bool rc = dbus_connection_send(fBus, send, NULL);
290 
291  // Show no interest in the previously created messages.
292  // DBus will delete a message if reference count drops to zero.
293  dbus_message_unref(send);
294 
295  return rc;
296  }
DBusMessage * GetDBusMessage(const string &cmd)
Definition: skypeclient.cc:252
DBusConnection * fBus
Definition: skypeclient.cc:26