Changeset 63403 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Aug 12, 2016 8:57:23 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
r62883 r63403 39 39 } 40 40 41 static int showNotify(const char *p cHeader, const char *pcBody)41 static int showNotify(const char *pszHeader, const char *pszBody) 42 42 { 43 43 int rc; … … 70 70 const char *msg_app = "VBoxClient"; 71 71 const char *msg_icon = ""; 72 const char *msg_summary = p cHeader;73 const char *msg_body = p cBody;72 const char *msg_summary = pszHeader; 73 const char *msg_body = pszBody; 74 74 int32_t msg_timeout = -1; /* Let the notification server decide */ 75 75 … … 115 115 dbus_message_unref(msg); 116 116 # else 117 /* TODO: Implement me */ 117 /** @todo Implement me */ 118 RT_NOREF(pszHeader, pszBody); 118 119 rc = VINF_SUCCESS; 119 120 # endif /* VBOX_WITH_DBUS */
Note:
See TracChangeset
for help on using the changeset viewer.