Changeset 95726 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 19, 2022 12:12:40 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152427
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/cloud/machinesettings
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/cloud/machinesettings/UICloudMachineSettingsDialogPage.cpp
r93115 r95726 30 30 UICloudMachineSettingsDialogPage::UICloudMachineSettingsDialogPage(QWidget *pParent, 31 31 bool fFullScale /* = true */) 32 : Q Widget(pParent)32 : QIWithRetranslateUI<QWidget>(pParent) 33 33 , m_pParent(qobject_cast<UICloudMachineSettingsDialog*>(pParent)) 34 34 , m_fFullScale(fFullScale) … … 53 53 AssertPtrReturnVoid(m_pFormEditor.data()); 54 54 m_pFormEditor->makeSureEditorDataCommitted(); 55 } 56 57 void UICloudMachineSettingsDialogPage::retranslateUi() 58 { 59 AssertPtrReturnVoid(m_pFormEditor.data()); 60 m_pFormEditor->setWhatsThis(tr("Contains a list of cloud machine settings.")); 55 61 } 56 62 … … 82 88 } 83 89 } 90 91 /* Apply language settings: */ 92 retranslateUi(); 84 93 } 85 94 -
trunk/src/VBox/Frontends/VirtualBox/src/cloud/machinesettings/UICloudMachineSettingsDialogPage.h
r93115 r95726 27 27 28 28 /* GUI includes: */ 29 #include "QIWithRetranslateUI.h" 29 30 #include "UIFormEditorWidget.h" 30 31 … … 37 38 38 39 /** Cloud machine settings dialog page. */ 39 class UICloudMachineSettingsDialogPage : public Q Widget40 class UICloudMachineSettingsDialogPage : public QIWithRetranslateUI<QWidget> 40 41 { 41 42 Q_OBJECT; … … 67 68 void makeSureDataCommitted(); 68 69 70 protected: 71 72 /** Handles translation event. */ 73 virtual void retranslateUi() RT_OVERRIDE; 74 69 75 private: 70 76
Note:
See TracChangeset
for help on using the changeset viewer.