Changeset 59570 in vbox
- Timestamp:
- Feb 3, 2016 12:21:07 PM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxBugReport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBugReport/VBoxBugReport.cpp
r59569 r59570 44 44 45 45 #ifndef RT_OS_WINDOWS 46 /* 47 * Generic item factory. 48 * 49 * @todo remove when enough platforms implemented. 50 */ 51 BugReportItemFactory *createBugReportItemFactory(void) 52 { 53 return new BugReportItemFactory; 46 /* @todo Replace with platform-specific implementations. */ 47 void createBugReportOsSpecific(BugReport* report, const char *pszHome) 48 { 54 49 } 55 50 #endif /* !RT_OS_WINDOWS */ -
trunk/src/VBox/Frontends/VBoxBugReport/VBoxBugReport.h
r59569 r59570 218 218 /* Platform-specific */ 219 219 220 #ifdef RT_OS_WINDOWS221 220 void createBugReportOsSpecific(BugReport* report, const char *pszHome); 222 #else /* !RT_OS_WINDOWS */223 /* @todo Replace with platform-specific implementations. */224 void createBugReportOsSpecific(BugReport* report, const char *pszHome) {}225 #endif /* !RT_OS_WINDOWS */226 221 227 222 #endif /* !___H_VBOXBUGREPORT */
Note:
See TracChangeset
for help on using the changeset viewer.