Changeset 49574 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 20, 2013 10:10:26 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90770
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r49506 r49574 77 77 #include "CSnapshot.h" 78 78 #include "CMedium.h" 79 80 #ifdef VBOX_GUI_WITH_KEYS_RESET_HANDLER 81 static void signalHandlerSIGUSR1(int sig, siginfo_t *, void *); 82 #endif 79 83 80 84 #ifdef Q_WS_MAC … … 1679 1683 */ 1680 1684 /* static */ 1681 void UISession::signalHandlerSIGUSR1(int sig, siginfo_t * /* pInfo */, void * /*pSecret */)1685 static void signalHandlerSIGUSR1(int sig, siginfo_t * /* pInfo */, void * /*pSecret */) 1682 1686 { 1683 1687 /* only SIGUSR1 is interesting */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h
r49506 r49574 33 33 class QMenu; 34 34 class QMenuBar; 35 #ifdef VBOX_GUI_WITH_KEYS_RESET_HANDLER36 # ifdef Q_WS_MAC37 struct __siginfo;38 typedef struct __siginfo siginfo_t;39 # else /* Q_WS_MAC */40 struct siginfo;41 typedef struct siginfo siginfo_t;42 # endif /* !Q_WS_MAC */43 #endif /* VBOX_GUI_WITH_KEYS_RESET_HANDLER */44 35 class UIFrameBuffer; 45 36 class UIMachine; … … 305 296 #endif /* Q_WS_MAC */ 306 297 307 #ifdef VBOX_GUI_WITH_KEYS_RESET_HANDLER308 static void signalHandlerSIGUSR1(int sig, siginfo_t *pInfo, void *pSecret);309 #endif /* VBOX_GUI_WITH_KEYS_RESET_HANDLER */310 311 298 /* Private variables: */ 312 299 UIMachine *m_pMachine;
Note:
See TracChangeset
for help on using the changeset viewer.