- Timestamp:
- Mar 22, 2018 12:48:08 PM (7 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/globals
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIIconPool.cpp
r71006 r71452 5 5 6 6 /* 7 * Copyright (C) 2010-201 7Oracle Corporation7 * Copyright (C) 2010-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 40 40 41 41 42 /********************************************************************************************************************************* 43 * Class UIIconPool implementation. * 44 *********************************************************************************************************************************/ 45 42 46 /* static */ 43 47 QPixmap UIIconPool::pixmap(const QString &strName) … … 266 270 } 267 271 272 273 /********************************************************************************************************************************* 274 * Class UIIconPoolGeneral implementation. * 275 *********************************************************************************************************************************/ 268 276 269 277 UIIconPoolGeneral::UIIconPoolGeneral() -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIIconPool.h
r66662 r71452 5 5 6 6 /* 7 * Copyright (C) 2010-201 7Oracle Corporation7 * Copyright (C) 2010-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 84 84 protected: 85 85 86 /** Icon-pool constructor. */ 86 /** Constructs icon-pool. 87 * Doesn't mean to be used directly, 88 * cause this class is a bunch of statics. */ 87 89 UIIconPool() {} 88 90 89 /** Icon-pool destructor. */91 /** Destructs icon-pool. */ 90 92 virtual ~UIIconPool() {} 91 93 … … 98 100 }; 99 101 102 100 103 /** UIIconPool interface extension used as general GUI icon-pool. 101 104 * Provides GUI with guest OS types pixmap cache. */ … … 104 107 public: 105 108 106 /** General icon-pool constructor. */109 /** Constructs general icon-pool. */ 107 110 UIIconPoolGeneral(); 108 111 … … 131 134 }; 132 135 136 133 137 #endif /* !___UIIconPool_h___ */ 138
Note:
See TracChangeset
for help on using the changeset viewer.