Changeset 6384 in vbox for trunk/src/VBox/Frontends/VirtualBox/ui/VBoxSharedFoldersSettings.ui.h
- Timestamp:
- Jan 18, 2008 9:15:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxSharedFoldersSettings.ui.h
r6382 r6384 404 404 void VBoxSharedFoldersSettings::createSharedFolder (const QString & aName, 405 405 const QString & aPath, 406 bool aWritable, 406 407 SFDialogType aType) 407 408 { … … 417 418 { 418 419 Assert (!mMachine.isNull()); 419 mMachine.CreateSharedFolder (aName, aPath );420 mMachine.CreateSharedFolder (aName, aPath, aWritable); 420 421 if (!mMachine.isOk()) 421 422 vboxProblem().cannotCreateSharedFolder (this, mMachine, … … 426 427 { 427 428 Assert (!mConsole.isNull()); 428 mConsole.CreateSharedFolder (aName, aPath );429 mConsole.CreateSharedFolder (aName, aPath, aWritable); 429 430 if (!mConsole.isOk()) 430 431 vboxProblem().cannotCreateSharedFolder (this, mConsole, … … 573 574 if (item && !item->getText (0).isNull() && !item->getText (1).isNull() 574 575 && item->getText (2) == "edited") 575 createSharedFolder (item->getText (0), item->getText (1), t ype);576 createSharedFolder (item->getText (0), item->getText (1), true, type); 576 577 iterator = iterator->nextSibling(); 577 578 }
Note:
See TracChangeset
for help on using the changeset viewer.