Changeset 12850 in vbox for trunk/src/VBox/Debugger/VBoxDbgConsole.h
- Timestamp:
- Oct 1, 2008 4:15:05 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37220
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/VBoxDbgConsole.h
r12466 r12850 176 176 void updateOutput(); 177 177 178 /** 179 * Changes the focus to the input field. 180 */ 181 void actFocusToInput(); 182 183 /** 184 * Changes the focus to the output viewer widget. 185 */ 186 void actFocusToOutput(); 178 187 179 188 protected: … … 296 305 * @todo find a better way because offsetof is undefined on objects and g++ gets very noisy because of that. 297 306 */ 298 #define VBOXDBGCONSOLE_FROM_DBGCBACK(pBack) ( ((struct VBoxDbgConsoleBack *)(pBack))->pSelf ) 307 # define VBOXDBGCONSOLE_FROM_DBGCBACK(pBack) ( ((struct VBoxDbgConsoleBack *)(pBack))->pSelf ) 308 309 #ifdef VBOXDBG_USE_QT4 310 /** Change focus to the input field. */ 311 QAction *m_pFocusToInput; 312 /** Change focus to the output viewer widget. */ 313 QAction *m_pFocusToOutput; 314 #endif 299 315 }; 300 316
Note:
See TracChangeset
for help on using the changeset viewer.