Changeset 43459 in vbox
- Timestamp:
- Sep 28, 2012 7:19:39 AM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings
- Files:
-
- 36 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsPage.h
r41587 r43459 78 78 public: 79 79 80 /* Load data to ca she from corresponding external object(s),80 /* Load data to cache from corresponding external object(s), 81 81 * this task COULD be performed in other than GUI thread: */ 82 82 virtual void loadToCacheFrom(QVariant &data) = 0; -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.cpp
r39779 r43459 43 43 } 44 44 45 /* Load data to ca she from corresponding external object(s),45 /* Load data to cache from corresponding external object(s), 46 46 * this task COULD be performed in other than GUI thread: */ 47 47 void UIGlobalSettingsDisplay::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsDisplay.h
r39779 r43459 42 42 protected: 43 43 44 /* Load data to ca she from corresponding external object(s),44 /* Load data to cache from corresponding external object(s), 45 45 * this task COULD be performed in other than GUI thread: */ 46 46 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.h
r39878 r43459 55 55 protected: 56 56 57 /* Load data to ca she from corresponding external object(s),57 /* Load data to cache from corresponding external object(s), 58 58 * this task COULD be performed in other than GUI thread: */ 59 59 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.cpp
r33926 r43459 59 59 } 60 60 61 /* Load data to ca she from corresponding external object(s),61 /* Load data to cache from corresponding external object(s), 62 62 * this task COULD be performed in other than GUI thread: */ 63 63 void UIGlobalSettingsGeneral::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsGeneral.h
r33958 r43459 48 48 protected: 49 49 50 /* Load data to ca she from corresponding external object(s),50 /* Load data to cache from corresponding external object(s), 51 51 * this task COULD be performed in other than GUI thread: */ 52 52 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.cpp
r35862 r43459 40 40 } 41 41 42 /* Load data to ca she from corresponding external object(s),42 /* Load data to cache from corresponding external object(s), 43 43 * this task COULD be performed in other than GUI thread: */ 44 44 void UIGlobalSettingsInput::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsInput.h
r35730 r43459 43 43 protected: 44 44 45 /* Load data to ca she from corresponding external object(s),45 /* Load data to cache from corresponding external object(s), 46 46 * this task COULD be performed in other than GUI thread: */ 47 47 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.cpp
r35522 r43459 190 190 } 191 191 192 /* Load data to ca she from corresponding external object(s),192 /* Load data to cache from corresponding external object(s), 193 193 * this task COULD be performed in other than GUI thread: */ 194 194 void UIGlobalSettingsLanguage::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsLanguage.h
r33961 r43459 42 42 protected: 43 43 44 /* Load data to ca she from corresponding external object(s),44 /* Load data to cache from corresponding external object(s), 45 45 * this task COULD be performed in other than GUI thread: */ 46 46 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetwork.cpp
r42551 r43459 248 248 } 249 249 250 /* Load data to ca she from corresponding external object(s),250 /* Load data to cache from corresponding external object(s), 251 251 * this task COULD be performed in other than GUI thread: */ 252 252 void UIGlobalSettingsNetwork::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsNetwork.h
r35748 r43459 149 149 protected: 150 150 151 /* Load data to ca she from corresponding external object(s),151 /* Load data to cache from corresponding external object(s), 152 152 * this task COULD be performed in other than GUI thread: */ 153 153 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.cpp
r37548 r43459 48 48 } 49 49 50 /* Load data to ca she from corresponding external object(s),50 /* Load data to cache from corresponding external object(s), 51 51 * this task COULD be performed in other than GUI thread: */ 52 52 void UIGlobalSettingsProxy::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsProxy.h
r37548 r43459 48 48 protected: 49 49 50 /* Load data to ca she from corresponding external object(s),50 /* Load data to cache from corresponding external object(s), 51 51 * this task COULD be performed in other than GUI thread: */ 52 52 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
r41689 r43459 41 41 } 42 42 43 /* Load data to ca she from corresponding external object(s),43 /* Load data to cache from corresponding external object(s), 44 44 * this task COULD be performed in other than GUI thread: */ 45 45 void UIGlobalSettingsUpdate::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.h
r38476 r43459 46 46 protected: 47 47 48 /* Load data to ca she from corresponding external object(s),48 /* Load data to cache from corresponding external object(s), 49 49 * this task COULD be performed in other than GUI thread: */ 50 50 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsAudio.cpp
r41819 r43459 33 33 } 34 34 35 /* Load data to ca she from corresponding external object(s),35 /* Load data to cache from corresponding external object(s), 36 36 * this task COULD be performed in other than GUI thread: */ 37 37 void UIMachineSettingsAudio::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsAudio.h
r41587 r43459 61 61 protected: 62 62 63 /* Load data to ca she from corresponding external object(s),63 /* Load data to cache from corresponding external object(s), 64 64 * this task COULD be performed in other than GUI thread: */ 65 65 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.cpp
r41819 r43459 161 161 #endif /* VBOX_WITH_VIDEOHWACCEL */ 162 162 163 /* Load data to ca she from corresponding external object(s),163 /* Load data to cache from corresponding external object(s), 164 164 * this task COULD be performed in other than GUI thread: */ 165 165 void UIMachineSettingsDisplay::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.h
r41587 r43459 97 97 protected: 98 98 99 /* Load data to ca she from corresponding external object(s),99 /* Load data to cache from corresponding external object(s), 100 100 * this task COULD be performed in other than GUI thread: */ 101 101 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.cpp
r42261 r43459 80 80 #endif /* VBOX_WITH_VIDEOHWACCEL */ 81 81 82 /* Load data to ca she from corresponding external object(s),82 /* Load data to cache from corresponding external object(s), 83 83 * this task COULD be performed in other than GUI thread: */ 84 84 void UIMachineSettingsGeneral::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.h
r42261 r43459 89 89 protected: 90 90 91 /* Load data to ca she from corresponding external object(s),91 /* Load data to cache from corresponding external object(s), 92 92 * this task COULD be performed in other than GUI thread: */ 93 93 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.cpp
r42551 r43459 747 747 } 748 748 749 /* Load data to ca she from corresponding external object(s),749 /* Load data to cache from corresponding external object(s), 750 750 * this task COULD be performed in other than GUI thread: */ 751 751 void UIMachineSettingsNetworkPage::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsNetwork.h
r37645 r43459 190 190 protected: 191 191 192 /* Load data to ca she from corresponding external object(s),192 /* Load data to cache from corresponding external object(s), 193 193 * this task COULD be performed in other than GUI thread: */ 194 194 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsParallel.cpp
r41587 r43459 201 201 } 202 202 203 /* Load data to ca she from corresponding external object(s),203 /* Load data to cache from corresponding external object(s), 204 204 * this task COULD be performed in other than GUI thread: */ 205 205 void UIMachineSettingsParallelPage::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsParallel.h
r41587 r43459 118 118 protected: 119 119 120 /* Load data to ca she from corresponding external object(s),120 /* Load data to cache from corresponding external object(s), 121 121 * this task COULD be performed in other than GUI thread: */ 122 122 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSF.cpp
r38311 r43459 216 216 } 217 217 218 /* Load data to ca she from corresponding external object(s),218 /* Load data to cache from corresponding external object(s), 219 219 * this task COULD be performed in other than GUI thread: */ 220 220 void UIMachineSettingsSF::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSF.h
r41587 r43459 87 87 protected: 88 88 89 /* Load data to ca she from corresponding external object(s),89 /* Load data to cache from corresponding external object(s), 90 90 * this task COULD be performed in other than GUI thread: */ 91 91 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.cpp
r41819 r43459 236 236 } 237 237 238 /* Load data to ca she from corresponding external object(s),238 /* Load data to cache from corresponding external object(s), 239 239 * this task COULD be performed in other than GUI thread: */ 240 240 void UIMachineSettingsSerialPage::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.h
r41587 r43459 125 125 protected: 126 126 127 /* Load data to ca she from corresponding external object(s),127 /* Load data to cache from corresponding external object(s), 128 128 * this task COULD be performed in other than GUI thread: */ 129 129 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.cpp
r43424 r43459 1892 1892 } 1893 1893 1894 /* Load data to ca she from corresponding external object(s),1894 /* Load data to cache from corresponding external object(s), 1895 1895 * this task COULD be performed in other than GUI thread: */ 1896 1896 void UIMachineSettingsStorage::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsStorage.h
r41615 r43459 656 656 protected: 657 657 658 /* Load data to ca she from corresponding external object(s),658 /* Load data to cache from corresponding external object(s), 659 659 * this task COULD be performed in other than GUI thread: */ 660 660 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp
r43199 r43459 193 193 } 194 194 195 /* Load data to ca she from corresponding external object(s),195 /* Load data to cache from corresponding external object(s), 196 196 * this task COULD be performed in other than GUI thread: */ 197 197 void UIMachineSettingsSystem::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.h
r41587 r43459 119 119 protected: 120 120 121 /* Load data to ca she from corresponding external object(s),121 /* Load data to cache from corresponding external object(s), 122 122 * this task COULD be performed in other than GUI thread: */ 123 123 void loadToCacheFrom(QVariant &data); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsUSB.cpp
r42551 r43459 242 242 } 243 243 244 /* Load data to ca she from corresponding external object(s),244 /* Load data to cache from corresponding external object(s), 245 245 * this task COULD be performed in other than GUI thread: */ 246 246 void UIMachineSettingsUSB::loadToCacheFrom(QVariant &data) -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsUSB.h
r41587 r43459 125 125 protected: 126 126 127 /* Load data to ca she from corresponding external object(s),127 /* Load data to cache from corresponding external object(s), 128 128 * this task COULD be performed in other than GUI thread: */ 129 129 void loadToCacheFrom(QVariant &data);
Note:
See TracChangeset
for help on using the changeset viewer.