- Timestamp:
- Mar 21, 2024 12:33:33 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 162372
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/cloud/machinesettings/UICloudMachineSettingsDialog.h
r103803 r103987 74 74 75 75 /** Handles translation event. */ 76 virtual void retranslateUi() RT_OVERRIDE ;76 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 77 77 /** Handles show @a pEvent. */ 78 virtual void showEvent(QShowEvent *pEvent) RT_OVERRIDE ;78 virtual void showEvent(QShowEvent *pEvent) RT_OVERRIDE RT_FINAL; 79 79 /** Handles first show @a pEvent. */ 80 80 virtual void polishEvent(QShowEvent*); 81 81 /** Handles close @a pEvent. */ 82 virtual void closeEvent(QCloseEvent *pEvent) RT_OVERRIDE ;82 virtual void closeEvent(QCloseEvent *pEvent) RT_OVERRIDE RT_FINAL; 83 83 84 84 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITableView.cpp
r98103 r103987 59 59 60 60 /** Returns the parent. */ 61 virtual QAccessibleInterface *parent() const RT_OVERRIDE ;61 virtual QAccessibleInterface *parent() const RT_OVERRIDE RT_FINAL; 62 62 63 63 /** Returns the number of children. */ … … 69 69 70 70 /** Returns the rect. */ 71 virtual QRect rect() const RT_OVERRIDE ;71 virtual QRect rect() const RT_OVERRIDE RT_FINAL; 72 72 /** Returns a text for the passed @a enmTextRole. */ 73 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE ;73 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE RT_FINAL; 74 74 75 75 /** Returns the role. */ 76 virtual QAccessible::Role role() const RT_OVERRIDE ;76 virtual QAccessible::Role role() const RT_OVERRIDE RT_FINAL; 77 77 /** Returns the state. */ 78 virtual QAccessible::State state() const RT_OVERRIDE ;78 virtual QAccessible::State state() const RT_OVERRIDE RT_FINAL; 79 79 80 80 private: … … 107 107 108 108 /** Returns the parent. */ 109 virtual QAccessibleInterface *parent() const RT_OVERRIDE ;109 virtual QAccessibleInterface *parent() const RT_OVERRIDE RT_FINAL; 110 110 111 111 /** Returns the number of children. */ 112 virtual int childCount() const RT_OVERRIDE ;112 virtual int childCount() const RT_OVERRIDE RT_FINAL; 113 113 /** Returns the child with the passed @a iIndex. */ 114 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE ;114 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE RT_FINAL; 115 115 /** Returns the index of the passed @a pChild. */ 116 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE ;116 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE RT_FINAL; 117 117 118 118 /** Returns the rect. */ 119 virtual QRect rect() const RT_OVERRIDE ;119 virtual QRect rect() const RT_OVERRIDE RT_FINAL; 120 120 /** Returns a text for the passed @a enmTextRole. */ 121 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE ;121 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE RT_FINAL; 122 122 123 123 /** Returns the role. */ 124 virtual QAccessible::Role role() const RT_OVERRIDE ;124 virtual QAccessible::Role role() const RT_OVERRIDE RT_FINAL; 125 125 /** Returns the state. */ 126 virtual QAccessible::State state() const RT_OVERRIDE ;126 virtual QAccessible::State state() const RT_OVERRIDE RT_FINAL; 127 127 128 128 private: … … 155 155 156 156 /** Returns the number of children. */ 157 virtual int childCount() const RT_OVERRIDE ;157 virtual int childCount() const RT_OVERRIDE RT_FINAL; 158 158 /** Returns the child with the passed @a iIndex. */ 159 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE ;159 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE RT_FINAL; 160 160 /** Returns the index of the passed @a pChild. */ 161 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE ;161 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE RT_FINAL; 162 162 163 163 /** Returns a text for the passed @a enmTextRole. */ 164 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE ;164 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE RT_FINAL; 165 165 166 166 private: -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITreeView.cpp
r103982 r103987 64 64 65 65 /** Returns the parent. */ 66 virtual QAccessibleInterface *parent() const RT_OVERRIDE ;66 virtual QAccessibleInterface *parent() const RT_OVERRIDE RT_FINAL; 67 67 68 68 /** Returns the number of children. */ 69 virtual int childCount() const RT_OVERRIDE ;69 virtual int childCount() const RT_OVERRIDE RT_FINAL; 70 70 /** Returns the child with the passed @a iIndex. */ 71 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE ;71 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE RT_FINAL; 72 72 /** Returns the index of the passed @a pChild. */ 73 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE ;73 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE RT_FINAL; 74 74 75 75 /** Returns the rect. */ 76 virtual QRect rect() const RT_OVERRIDE ;76 virtual QRect rect() const RT_OVERRIDE RT_FINAL; 77 77 /** Returns a text for the passed @a enmTextRole. */ 78 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE ;78 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE RT_FINAL; 79 79 80 80 /** Returns the role. */ 81 virtual QAccessible::Role role() const RT_OVERRIDE ;81 virtual QAccessible::Role role() const RT_OVERRIDE RT_FINAL; 82 82 /** Returns the state. */ 83 virtual QAccessible::State state() const RT_OVERRIDE ;83 virtual QAccessible::State state() const RT_OVERRIDE RT_FINAL; 84 84 85 85 private: … … 112 112 113 113 /** Returns the number of children. */ 114 virtual int childCount() const RT_OVERRIDE ;114 virtual int childCount() const RT_OVERRIDE RT_FINAL; 115 115 /** Returns the child with the passed @a iIndex. */ 116 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE ;116 virtual QAccessibleInterface *child(int iIndex) const RT_OVERRIDE RT_FINAL; 117 117 /** Returns the index of the passed @a pChild. */ 118 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE ;118 virtual int indexOfChild(const QAccessibleInterface *pChild) const RT_OVERRIDE RT_FINAL; 119 119 120 120 /** Returns a text for the passed @a enmTextRole. */ 121 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE ;121 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE RT_FINAL; 122 122 123 123 private: -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.h
r103579 r103987 162 162 163 163 /** Handles translation event. */ 164 virtual void retranslateUi() RT_OVERRIDE ;164 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 165 165 166 166 private slots: … … 176 176 UIShortcutPool(UIType enmType); 177 177 /** Destructs shortcut pool. */ 178 virtual ~UIShortcutPool() RT_OVERRIDE ;178 virtual ~UIShortcutPool() RT_OVERRIDE RT_FINAL; 179 179 180 180 /** Prepares all. */ -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerPaneContainer.cpp
r103923 r103987 77 77 protected: 78 78 79 virtual void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE ;80 virtual void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE ;79 virtual void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 80 virtual void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 81 81 82 82 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIGuestProcessControlWidget.cpp
r103771 r103987 81 81 protected: 82 82 83 void contextMenuEvent(QContextMenuEvent *pEvent) RT_OVERRIDE ;83 void contextMenuEvent(QContextMenuEvent *pEvent) RT_OVERRIDE RT_FINAL; 84 84 85 85 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerWidget.cpp
r103923 r103987 127 127 protected: 128 128 129 virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE ;129 virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 130 130 }; 131 131 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r103793 r103987 145 145 146 146 /** Handles translation event. */ 147 virtual void retranslateUi() RT_OVERRIDE ;147 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 148 148 149 149 private: … … 190 190 191 191 /** Handles translation event. */ 192 virtual void retranslateUi() RT_OVERRIDE ;192 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 193 193 194 194 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.h
r103803 r103987 867 867 UIMachine(); 868 868 /** Destructs machine UI singleton. */ 869 virtual ~UIMachine() RT_OVERRIDE ;869 virtual ~UIMachine() RT_OVERRIDE RT_FINAL; 870 870 871 871 /** Prepare routine. */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIStatusBarEditor.cpp
r103977 r103987 94 94 95 95 /** Handles any Qt @a pEvent. */ 96 virtual bool event(QEvent *pEvent) RT_OVERRIDE ;96 virtual bool event(QEvent *pEvent) RT_OVERRIDE RT_FINAL; 97 97 98 98 /** Handles translation event. */ 99 virtual void retranslateUi() RT_OVERRIDE ;99 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 100 100 101 101 /** Handles paint @a pEvent. */ 102 virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE ;102 virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 103 103 104 104 /** Handles mouse-press @a pEvent. */ 105 virtual void mousePressEvent(QMouseEvent *pEvent) RT_OVERRIDE ;105 virtual void mousePressEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 106 106 /** Handles mouse-release @a pEvent. */ 107 virtual void mouseReleaseEvent(QMouseEvent *pEvent) RT_OVERRIDE ;107 virtual void mouseReleaseEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 108 108 /** Handles mouse-enter @a pEvent. */ 109 virtual void enterEvent(QEnterEvent *pEvent) RT_OVERRIDE ;109 virtual void enterEvent(QEnterEvent *pEvent) RT_OVERRIDE RT_FINAL; 110 110 /** Handles mouse-leave @a pEvent. */ 111 virtual void leaveEvent(QEvent *pEvent) RT_OVERRIDE ;111 virtual void leaveEvent(QEvent *pEvent) RT_OVERRIDE RT_FINAL; 112 112 /** Handles mouse-move @a pEvent. */ 113 virtual void mouseMoveEvent(QMouseEvent *pEvent) RT_OVERRIDE ;113 virtual void mouseMoveEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 114 114 115 115 private: … … 150 150 151 151 /** Returns a text for the passed @a enmTextRole. */ 152 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE ;152 virtual QString text(QAccessible::Text enmTextRole) const RT_OVERRIDE RT_FINAL; 153 153 154 154 /** Returns the state. */ 155 virtual QAccessible::State state() const RT_OVERRIDE ;155 virtual QAccessible::State state() const RT_OVERRIDE RT_FINAL; 156 156 157 157 private: -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.h
r103977 r103987 148 148 149 149 /** Preprocesses every @a pEvent sent to @a pObject. */ 150 bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE ;150 bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 151 151 152 152 /** Handles resize @a pEvent. */ 153 void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE ;153 void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL; 154 154 155 155 /** Handles focus-in @a pEvent. */ 156 void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE ;156 void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 157 157 /** Handles focus-out @a pEvent. */ 158 void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE ;158 void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 159 159 160 160 /** Handles translation event. */ 161 virtual void retranslateUi() RT_OVERRIDE ;161 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 162 162 163 163 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UINativeWizard.h
r103977 r103987 148 148 149 149 /** Handles key-press @a pEvent. */ 150 virtual void keyPressEvent(QKeyEvent *pEvent) RT_OVERRIDE ;150 virtual void keyPressEvent(QKeyEvent *pEvent) RT_OVERRIDE RT_FINAL; 151 151 /** Handles close @a pEvent. */ 152 virtual void closeEvent(QCloseEvent *pEvent) RT_OVERRIDE ;152 virtual void closeEvent(QCloseEvent *pEvent) RT_OVERRIDE RT_FINAL; 153 153 154 154 /** Performs wizard-specific cleanup in case of wizard-mode change
Note:
See TracChangeset
for help on using the changeset viewer.