Changeset 34978 in vbox
- Timestamp:
- Dec 13, 2010 8:34:48 AM (14 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp
r34814 r34978 2171 2171 } 2172 2172 2173 void VBoxProblemReporter::notifyAboutExtPackInstalled(const QString &strPackName, QWidget *pParent) 2174 { 2175 message (pParent ? pParent : mainWindowShown(), 2176 Info, 2177 tr("The extension pack <br><nobr><b>%1</b><nobr><br> was installed successfully.").arg(strPackName)); 2178 } 2179 2173 2180 void VBoxProblemReporter::warnAboutIncorrectPort (QWidget *pParent) const 2174 2181 { -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.h
r34814 r34978 344 344 bool confirmInstallingPackage(const QString &strPackName, const QString &strPackVersion, const QString &strPackDescription, QWidget *pParent = 0); 345 345 bool confirmRemovingPackage(const QString &strPackName, QWidget *pParent = 0); 346 void notifyAboutExtPackInstalled(const QString &strPackName, QWidget *pParent = 0); 346 347 347 348 void warnAboutIncorrectPort(QWidget *pParent) const; -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp
r34892 r34978 145 145 extPackFile.Install(); 146 146 if (extPackFile.isOk()) 147 { 148 vboxProblem().notifyAboutExtPackInstalled(strPackName, pParent); 147 149 fInstalled = true; 150 } 148 151 else 149 152 vboxProblem().cannotInstallExtPack(strFilePath, extPackFile, pParent);
Note:
See TracChangeset
for help on using the changeset viewer.