VirtualBox

Changeset 103988 in vbox for trunk


Ignore:
Timestamp:
Mar 21, 2024 1:49:47 PM (12 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
162373
Message:

FE/Qt. bugref:10624. Adding missing override keywords gcc has found.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
54 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/activity/overview/UIVMActivityOverviewWidget.cpp

    r103982 r103988  
    444444protected:
    445445
    446     virtual void drawFocus ( QPainter * /*painter*/, const QStyleOptionViewItem & /*option*/, const QRect & /*rect*/ ) const {}
     446    virtual void drawFocus ( QPainter * /*painter*/, const QStyleOptionViewItem & /*option*/, const QRect & /*rect*/ ) const  RT_OVERRIDE RT_FINAL {}
    447447};
    448448
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIAdvancedSlider.cpp

    r98103 r103988  
    7373
    7474    /** Handles paint @a pEvent. */
    75     virtual void paintEvent(QPaintEvent *pEvent);
     75    virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL;
    7676
    7777private:
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIArrowSplitter.cpp

    r98103 r103988  
    5757
    5858    /** Returns minimum size-hint. */
    59     QSize minimumSizeHint() const;
     59    QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL;
    6060    /** Returns size-hint. */
    61     QSize sizeHint() const;
     61    QSize sizeHint() const RT_OVERRIDE RT_FINAL;
    6262
    6363    /** Update scroll-bars. */
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QILabel.h

    r103362 r103988  
    6363    void useSizeHintForWidth(int iWidthHint) const;
    6464    /** Returns size-hint. */
    65     QSize sizeHint() const;
     65    QSize sizeHint() const RT_OVERRIDE RT_FINAL;
    6666    /** Returns minimum size-hint. */
    67     QSize minimumSizeHint() const;
     67    QSize minimumSizeHint() const  RT_OVERRIDE RT_FINAL;
    6868
    6969    /** Returns text. */
     
    8282
    8383    /** Handles resize @a pEvent. */
    84     void resizeEvent(QResizeEvent *pEvent);
     84    void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
    8585
    8686    /** Handles mouse-press @a pEvent. */
    87     void mousePressEvent(QMouseEvent *pEvent);
     87    void mousePressEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL;
    8888    /** Handles mouse-release @a pEvent. */
    89     void mouseReleaseEvent(QMouseEvent *pEvent);
     89    void mouseReleaseEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9090    /** Handles mouse-move @a pEvent. */
    91     void mouseMoveEvent(QMouseEvent *pEvent);
     91    void mouseMoveEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9292
    9393    /** Handles context-menu @a pEvent. */
    94     void contextMenuEvent(QContextMenuEvent *pEvent);
     94    void contextMenuEvent(QContextMenuEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9595
    9696    /** Handles focus-in @a pEvent. */
    97     void focusInEvent(QFocusEvent *pEvent);
     97    void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9898    /** Handles focus-out @a pEvent. */
    99     void focusOutEvent(QFocusEvent *pEvent);
     99    void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL;
    100100
    101101    /** Handles paint @a pEvent. */
    102     void paintEvent(QPaintEvent *pEvent);
     102    void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL;
    103103
    104104private:
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITableWidget.h

    r98103 r103988  
    8989
    9090    /** Handles paint @a pEvent. */
    91     void paintEvent(QPaintEvent *pEvent);
     91    void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9292    /** Handles resize @a pEvent. */
    93     void resizeEvent(QResizeEvent *pEvent);
     93    void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9494};
    9595
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITreeWidget.h

    r101399 r103988  
    133133
    134134    /** Handles paint @a pEvent. */
    135     void paintEvent(QPaintEvent *pEvent);
     135    void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL;
    136136    /** Handles resize @a pEvent. */
    137     void resizeEvent(QResizeEvent *pEvent);
     137    void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
    138138
    139139private:
  • trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIWidgetValidator.h

    r100959 r103988  
    146146
    147147    /** Performs validation for @a strInput at @a iPosition. */
    148     State validate(QString &strInput, int &iPosition) const;
     148    State validate(QString &strInput, int &iPosition) const RT_OVERRIDE RT_FINAL;
    149149
    150150    /** Defines @a uBottom. */
  • trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp

    r103803 r103988  
    298298
    299299    /** Size-hint calculation routine. */
    300     QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
     300    QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const  RT_OVERRIDE RT_FINAL;
    301301
    302302    /** Paint routine. */
    303     void paint(QPainter *pPainter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
     303    void paint(QPainter *pPainter, const QStyleOptionViewItem &option, const QModelIndex &index) const RT_OVERRIDE RT_FINAL;
    304304
    305305    /** Fetch pixmap info for passed QModelIndex. */
     
    450450      * is less than the value of the item referred to by the given index right,
    451451      * otherwise returns false. */
    452     bool lessThan(const QModelIndex &leftIdx, const QModelIndex &rightIdx) const
     452    bool lessThan(const QModelIndex &leftIdx, const QModelIndex &rightIdx) const RT_OVERRIDE RT_FINAL
    453453    {
    454454        /* Compare by ID first: */
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/QIWithRetranslateUI.h

    r99949 r103988  
    6262
    6363    /** Pre-handles standard Qt @a pEvent for passed @a pObject. */
    64     virtual bool eventFilter(QObject *pObject, QEvent *pEvent)
     64    virtual bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE
    6565    {
    6666        /* If translation is NOT currently in progress handle
     
    106106
    107107    /** Pre-handles standard Qt @a pEvent for passed @a pObject. */
    108     virtual bool eventFilter(QObject *pObject, QEvent *pEvent)
     108    virtual bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE
    109109    {
    110110        /* If translation is NOT currently in progress handle
     
    140140
    141141    /** Pre-handles standard Qt @a pEvent for passed @a pObject. */
    142     virtual bool eventFilter(QObject *pObject, QEvent *pEvent)
     142    virtual bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE
    143143    {
    144144        /* If translation is NOT currently in progress handle
     
    183183
    184184    /** Pre-handles standard Qt @a pEvent for passed @a pObject. */
    185     virtual bool eventFilter(QObject *pObject, QEvent *pEvent)
     185    virtual bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE RT_FINAL
    186186    {
    187187        /* If translation is NOT currently in progress handle
     
    202202
    203203#endif /* !FEQT_INCLUDED_SRC_globals_QIWithRetranslateUI_h */
    204 
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h

    r103552 r103988  
    220220
    221221    /** Handles any Qt @a pEvent. */
    222     virtual bool event(QEvent *pEvent);
     222    virtual bool event(QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    223223
    224224private:
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp

    r103918 r103988  
    26522652
    26532653        /** Handles any Qt @a pEvent. */
    2654         bool event(QEvent *pEvent)
     2654        bool event(QEvent *pEvent) RT_OVERRIDE RT_FINAL
    26552655        {
    26562656            /* Handle service event: */
     
    26812681
    26822682        /** Executes thread task. */
    2683         void run()
     2683        void run() RT_OVERRIDE RT_FINAL
    26842684        {
    26852685            QApplication::postEvent(&m_client, new ServiceEvent(QDesktopServices::openUrl(m_strUrl)));
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.cpp

    r103551 r103988  
    155155
    156156    /** Move @a pEvent handler. */
    157     void moveEvent(QMoveEvent *pEvent);
     157    void moveEvent(QMoveEvent *pEvent) RT_OVERRIDE RT_FINAL;
    158158    /** Resize @a pEvent handler. */
    159     void resizeEvent(QResizeEvent *pEvent);
     159    void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
    160160
    161161    /** Holds the index of the host-screen this window created for. */
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIThreadPool.cpp

    r98103 r103988  
    6565
    6666    /** Contains the worker-thread body. */
    67     void run();
     67    void run() RT_OVERRIDE RT_FINAL;
    6868
    6969    /** Holds the worker-thread pool reference. */
  • trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.cpp

    r103982 r103988  
    111111protected:
    112112
    113     virtual void drawFocus ( QPainter * /*painter*/, const QStyleOptionViewItem & /*option*/, const QRect & /*rect*/ ) const {}
     113    virtual void drawFocus ( QPainter * /*painter*/, const QStyleOptionViewItem & /*option*/, const QRect & /*rect*/ ) const  RT_OVERRIDE RT_FINAL{}
    114114};
    115115
  • trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerPreferencesWidget.h

    r103923 r103988  
    6868protected:
    6969
    70     virtual void prepareWidgets();
    71     virtual void prepareConnections();
     70    virtual void prepareWidgets() RT_OVERRIDE RT_FINAL;
     71    virtual void prepareConnections() RT_OVERRIDE RT_FINAL;
    7272
    7373private slots:
  • trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerTextEdit.cpp

    r103982 r103988  
    197197public:
    198198    UILineNumberArea(UIVMLogViewerTextEdit *textEdit);
    199     QSize sizeHint() const;
     199    QSize sizeHint() const RT_OVERRIDE RT_FINAL;
    200200
    201201protected:
    202202
    203     void paintEvent(QPaintEvent *event);
    204     void mouseMoveEvent(QMouseEvent *pEvent);
    205     void mousePressEvent(QMouseEvent *pEvent);
     203    void paintEvent(QPaintEvent *event) RT_OVERRIDE RT_FINAL;
     204    void mouseMoveEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL;
     205    void mousePressEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL;
    206206
    207207private:
  • trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserItem.h

    r103704 r103988  
    7373
    7474    /** Draws effect with passed @a pPainter. */
    75     virtual void draw(QPainter *pPainter);
     75    virtual void draw(QPainter *pPainter) RT_OVERRIDE RT_FINAL;;
    7676
    7777private:
  • trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElements.h

    r103977 r103988  
    174174
    175175    /** Contains update task body. */
    176     void run();
     176    void run() RT_OVERRIDE RT_FINAL;
    177177
    178178    /** Holds the options. */
     
    194194
    195195    /** Contains update task body. */
    196     void run();
     196    void run() RT_OVERRIDE RT_FINAL;
    197197
    198198    /** Holds the options. */
     
    233233
    234234    /** Contains update task body. */
    235     void run();
     235    void run() RT_OVERRIDE RT_FINAL;
    236236
    237237    /** Holds the options. */
     
    272272
    273273    /** Contains update task body. */
    274     void run();
     274    void run() RT_OVERRIDE RT_FINAL;
    275275
    276276    /** Holds the options. */
     
    311311
    312312    /** Contains update task body. */
    313     void run();
     313    void run() RT_OVERRIDE RT_FINAL;
    314314
    315315    /** Holds the options. */
     
    350350
    351351    /** Contains update task body. */
    352     void run();
     352    void run() RT_OVERRIDE RT_FINAL;
    353353
    354354    /** Holds the options. */
     
    389389
    390390    /** Contains update task body. */
    391     void run();
     391    void run() RT_OVERRIDE RT_FINAL;
    392392
    393393    /** Holds the options. */
     
    428428
    429429    /** Contains update task body. */
    430     void run();
     430    void run() RT_OVERRIDE RT_FINAL;
    431431
    432432    /** Holds the options. */
     
    467467
    468468    /** Contains update task body. */
    469     void run();
     469    void run() RT_OVERRIDE RT_FINAL;
    470470
    471471    /** Holds the options. */
     
    506506
    507507    /** Contains update task body. */
    508     void run();
     508    void run() RT_OVERRIDE RT_FINAL;
    509509
    510510    /** Holds the options. */
     
    545545
    546546    /** Contains update task body. */
    547     void run();
     547    void run() RT_OVERRIDE RT_FINAL;
    548548
    549549    /** Holds the options. */
     
    584584
    585585    /** Contains update task body. */
    586     void run();
     586    void run() RT_OVERRIDE RT_FINAL;
    587587
    588588    /** Holds the options. */
     
    609609
    610610#endif /* !FEQT_INCLUDED_SRC_manager_details_UIDetailsElements_h */
    611 
  • trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp

    r103803 r103988  
    8282private:
    8383    /** Determines whether passed UIMediumItem is suitable by @a uID. */
    84     bool isItSuitable(UIMediumItem *pItem) const { return pItem->id() == m_uID; }
     84    bool isItSuitable(UIMediumItem *pItem) const  RT_OVERRIDE RT_FINAL { return pItem->id() == m_uID; }
    8585    /** Holds the @a uID to compare to. */
    8686    QUuid m_uID;
     
    9696private:
    9797    /** Determines whether passed UIMediumItem is suitable by @a state. */
    98     bool isItSuitable(UIMediumItem *pItem) const { return pItem->state() == m_state; }
     98    bool isItSuitable(UIMediumItem *pItem) const  RT_OVERRIDE RT_FINAL { return pItem->state() == m_state; }
    9999    /** Holds the @a state to compare to. */
    100100    KMediumState m_state;
  • trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSearchWidget.cpp

    r101571 r103988  
    6060        , m_strSearchTerm(strSearchTerm){}
    6161    virtual ~FilterByNameUUID(){}
    62     virtual bool operator()(QTreeWidgetItem *pItem) const
     62    virtual bool operator()(QTreeWidgetItem *pItem) const RT_OVERRIDE RT_FINAL
    6363    {
    6464        if (!pItem || m_strSearchTerm.isEmpty())
  • trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoContentBrowser.cpp

    r103320 r103988  
    163163protected:
    164164
    165     virtual void drawFocus ( QPainter * /*painter*/, const QStyleOptionViewItem & /*option*/, const QRect & /*rect*/ ) const {}
     165    virtual void drawFocus ( QPainter * /*painter*/, const QStyleOptionViewItem & /*option*/, const QRect & /*rect*/ ) const  RT_OVERRIDE RT_FINAL{}
    166166};
    167167
     
    184184
    185185    UIVisoContentTableView(QWidget *pParent = 0);
    186     void dragEnterEvent(QDragEnterEvent *event);
    187     void dropEvent(QDropEvent *event);
    188     void dragMoveEvent(QDragMoveEvent *event);
     186    void dragEnterEvent(QDragEnterEvent *event) RT_OVERRIDE RT_FINAL;
     187    void dropEvent(QDropEvent *event) RT_OVERRIDE RT_FINAL;
     188    void dragMoveEvent(QDragMoveEvent *event) RT_OVERRIDE RT_FINAL;
    189189    bool hasSelection() const;
    190190};
  • trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h

    r103982 r103988  
    6464private:
    6565
    66     virtual void createFileViewContextMenu(const QWidget *pWidget, const QPoint &point);// RT_OVERRIDE RT_FINAL;
     66    virtual void createFileViewContextMenu(const QWidget *pWidget, const QPoint &point) RT_OVERRIDE RT_FINAL;
    6767    virtual void retranslateUi() RT_OVERRIDE RT_FINAL;
    6868    QPointer<QMenu>        m_pSubMenu;
  • trunk/src/VBox/Frontends/VirtualBox/src/networking/UINetworkReply.cpp

    r103771 r103988  
    112112
    113113        /** Performs whole thread functionality. */
    114         void run();
     114        void run() RT_OVERRIDE RT_FINAL;
    115115
    116116        /** Handles download progress callback.
  • trunk/src/VBox/Frontends/VirtualBox/src/networking/UINewVersionChecker.h

    r98103 r103988  
    7171
    7272    /** Handles network reply progress for @a iReceived amount of bytes among @a iTotal. */
    73     virtual void processNetworkReplyProgress(qint64 iReceived, qint64 iTotal);
     73    virtual void processNetworkReplyProgress(qint64 iReceived, qint64 iTotal) RT_OVERRIDE RT_FINAL;
    7474    /** Handles network reply failed with specified @a strError. */
    75     virtual void processNetworkReplyFailed(const QString &strError);
     75    virtual void processNetworkReplyFailed(const QString &strError) RT_OVERRIDE RT_FINAL;
    7676    /** Handles network reply canceling for a passed @a pReply. */
    77     virtual void processNetworkReplyCanceled(UINetworkReply *pReply);
     77    virtual void processNetworkReplyCanceled(UINetworkReply *pReply) RT_OVERRIDE RT_FINAL;
    7878    /** Handles network reply finishing for a passed @a pReply. */
    79     virtual void processNetworkReplyFinished(UINetworkReply *pReply);
     79    virtual void processNetworkReplyFinished(UINetworkReply *pReply) RT_OVERRIDE RT_FINAL;
    8080
    8181private:
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.h

    r100064 r103988  
    149149
    150150    /* Event handler for registered machine-view(s): */
    151     bool eventFilter(QObject *pWatchedObject, QEvent *pEvent);
     151    bool eventFilter(QObject *pWatchedObject, QEvent *pEvent) RT_OVERRIDE;
    152152
    153153#if defined(VBOX_WS_MAC)
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp

    r103711 r103988  
    113113
    114114    /** Redirects all the native events to parent. */
    115     bool nativeEventFilter(const QByteArray &eventType, void *pMessage, qintptr*)
     115    bool nativeEventFilter(const QByteArray &eventType, void *pMessage, qintptr*) RT_OVERRIDE RT_FINAL
    116116    {
    117117        return m_pParent->nativeEventPreprocessor(eventType, pMessage);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h

    r103803 r103988  
    269269    /* Protected getters: */
    270270    UIActionPool* actionPool() const;
    271     QSize sizeHint() const;
     271    QSize sizeHint() const RT_OVERRIDE;
    272272
    273273    /** Retrieves the last guest-screen size-hint from extra-data. */
     
    305305    virtual void updateSliders();
    306306    static void dimImage(QImage &img);
    307     void scrollContentsBy(int dx, int dy);
     307    void scrollContentsBy(int dx, int dy) RT_OVERRIDE RT_FINAL;
    308308#ifdef VBOX_WS_MAC
    309309    void updateDockIcon();
     
    314314
    315315    /* Cross-platforms event processors: */
    316     bool eventFilter(QObject *pWatched, QEvent *pEvent);
    317     void resizeEvent(QResizeEvent *pEvent);
    318     void moveEvent(QMoveEvent *pEvent);
    319     void paintEvent(QPaintEvent *pEvent);
     316    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE;
     317    void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
     318    void moveEvent(QMoveEvent *pEvent) RT_OVERRIDE RT_FINAL;
     319    void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL;
    320320
    321321    /** Handles focus-in @a pEvent. */
    322     void focusInEvent(QFocusEvent *pEvent);
     322    void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL;
    323323    /** Handles focus-out @a pEvent. */
    324     void focusOutEvent(QFocusEvent *pEvent);
     324    void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL;
    325325#ifdef VBOX_WS_NIX
    326     virtual void keyPressEvent(QKeyEvent *pEvent) override;
    327     virtual void keyReleaseEvent(QKeyEvent *pEvent) override;
     326    virtual void keyPressEvent(QKeyEvent *pEvent) RT_OVERRIDE RT_FINAL;
     327    virtual void keyReleaseEvent(QKeyEvent *pEvent) RT_OVERRIDE RT_FINAL;
    328328#endif
    329329
     
    348348     * @param pEvent                Related enter event.
    349349     */
    350     void dragEnterEvent(QDragEnterEvent *pEvent);
     350    void dragEnterEvent(QDragEnterEvent *pEvent) RT_OVERRIDE RT_FINAL;
    351351
    352352    /**
     
    357357     * @param pEvent                Related move event.
    358358     */
    359     void dragLeaveEvent(QDragLeaveEvent *pEvent);
     359    void dragLeaveEvent(QDragLeaveEvent *pEvent) RT_OVERRIDE RT_FINAL;
    360360
    361361    /**
     
    365365     * @param pEvent                Related leave event.
    366366     */
    367     void dragMoveEvent(QDragMoveEvent *pEvent);
     367    void dragMoveEvent(QDragMoveEvent *pEvent) RT_OVERRIDE RT_FINAL;
    368368
    369369    /**
     
    372372     * @param pEvent                Related drop event.
    373373     */
    374     void dropEvent(QDropEvent *pEvent);
     374    void dropEvent(QDropEvent *pEvent) RT_OVERRIDE RT_FINAL;
    375375#endif /* VBOX_WITH_DRAG_AND_DROP */
    376376
     
    465465protected:
    466466
    467     void timerEvent(QTimerEvent *pEvent)
     467    void timerEvent(QTimerEvent *pEvent) RT_OVERRIDE RT_FINAL
    468468    {
    469469        /* If that timer event occurs => it seems
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.h

    r98520 r103988  
    109109
    110110    /* Event handler for registered machine-view(s): */
    111     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     111    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    112112
    113113    /* Separate function to handle most of existing mouse-events: */
     
    155155
    156156#endif /* !FEQT_INCLUDED_SRC_runtime_UIMouseHandler_h */
    157 
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIKeyboardHandlerFullscreen.h

    r98103 r103988  
    5151
    5252    /** General event-filter. */
    53     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     53    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    5454};
    5555
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.h

    r100064 r103988  
    7777#if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX)
    7878    /** Handles machine state change event. */
    79     void sltMachineStateChanged();
     79    void sltMachineStateChanged() RT_OVERRIDE RT_FINAL;
    8080
    8181    /** Revokes window activation. */
     
    100100
    101101    /** Prepare notification-center routine. */
    102     void prepareNotificationCenter();
     102    void prepareNotificationCenter()  RT_OVERRIDE RT_FINAL;
    103103    /** Prepare visual-state routine. */
    104     void prepareVisualState();
     104    void prepareVisualState() RT_OVERRIDE RT_FINAL;
    105105#if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX)
    106106    /** Prepare mini-toolbar routine. */
     
    113113#endif /* VBOX_WS_WIN || VBOX_WS_NIX */
    114114    /** Cleanup visual-state routine. */
    115     void cleanupVisualState();
     115    void cleanupVisualState() RT_OVERRIDE RT_FINAL;
    116116    /** Cleanup notification-center routine. */
    117     void cleanupNotificationCenter();
     117    void cleanupNotificationCenter() RT_OVERRIDE RT_FINAL;
    118118
    119119    /** Updates geometry according to visual-state. */
    120120    void placeOnScreen();
    121121    /** Updates visibility according to visual-state. */
    122     void showInNecessaryMode();
     122    void showInNecessaryMode() RT_OVERRIDE RT_FINAL;
    123123
    124124#if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX)
    125125    /** Common update routine. */
    126     void updateAppearanceOf(int iElement);
     126    void updateAppearanceOf(int iElement) RT_OVERRIDE RT_FINAL;
    127127#endif /* VBOX_WS_WIN || VBOX_WS_NIX */
    128128
    129129#ifdef VBOX_WS_NIX
    130130    /** X11: Handles @a pEvent about state change. */
    131     void changeEvent(QEvent *pEvent);
     131    void changeEvent(QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    132132#endif
    133133
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIKeyboardHandlerNormal.h

    r98103 r103988  
    5252#ifndef VBOX_WS_MAC
    5353    /** General event-filter. */
    54     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     54    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    5555#endif /* !VBOX_WS_MAC */
    5656};
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.h

    r103977 r103988  
    9393    void prepareMachineWindows() RT_OVERRIDE;
    9494#ifndef VBOX_WS_MAC
    95     void prepareMenu();
     95    void prepareMenu() RT_OVERRIDE RT_FINAL;
    9696#endif /* !VBOX_WS_MAC */
    9797
    9898    /* Cleanup helpers: */
    9999#ifndef VBOX_WS_MAC
    100     void cleanupMenu();
     100    void cleanupMenu() RT_OVERRIDE RT_FINAL;
    101101#endif /* !VBOX_WS_MAC */
    102102    void cleanupMachineWindows() RT_OVERRIDE;
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.h

    r103977 r103988  
    8383#ifndef VBOX_WS_MAC
    8484    /** Prepare menu routine. */
    85     void prepareMenu();
     85    void prepareMenu()  RT_OVERRIDE RT_FINAL;
    8686#endif /* !VBOX_WS_MAC */
    8787    /** Prepare status-bar routine. */
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIKeyboardHandlerScale.h

    r98103 r103988  
    5252#ifndef VBOX_WS_MAC
    5353    /** General event-filter. */
    54     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     54    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    5555#endif /* !VBOX_WS_MAC */
    5656};
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineLogicScale.h

    r103977 r103988  
    7474    void prepareMachineWindows() RT_OVERRIDE;
    7575#ifndef RT_OS_DARWIN
    76     void prepareMenu();
     76    void prepareMenu() RT_OVERRIDE RT_FINAL;
    7777#endif /* !RT_OS_DARWIN */
    7878
    7979    /* Cleanup helpers: */
    8080#ifndef RT_OS_DARWIN
    81     void cleanupMenu();
     81    void cleanupMenu() RT_OVERRIDE RT_FINAL;
    8282#endif /* !RT_OS_DARWIN */
    8383    void cleanupMachineWindows() RT_OVERRIDE;
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineViewScale.h

    r98103 r103988  
    5555
    5656    /* Event handlers: */
    57     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     57    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    5858
    5959    /** Applies machine-view scale-factor. */
    60     void applyMachineViewScaleFactor();
     60    void applyMachineViewScaleFactor() RT_OVERRIDE RT_FINAL;
    6161
    6262    /** Resends guest size-hint. */
    63     void resendSizeHint();
     63    void resendSizeHint() RT_OVERRIDE RT_FINAL;
    6464
    6565    /* Private helpers: */
    66     QSize sizeHint() const;
    67     QRect workingArea() const;
    68     QSize calculateMaxGuestSize() const;
    69     void updateSliders();
     66    QSize sizeHint() const RT_OVERRIDE RT_FINAL;
     67    QRect workingArea() const RT_OVERRIDE RT_FINAL;
     68    QSize calculateMaxGuestSize() const RT_OVERRIDE RT_FINAL;
     69    void updateSliders() RT_OVERRIDE RT_FINAL;
    7070};
    7171
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIKeyboardHandlerSeamless.h

    r98103 r103988  
    5252#ifndef VBOX_WS_MAC
    5353    /** General event-filter. */
    54     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     54    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    5555#endif /* !VBOX_WS_MAC */
    5656};
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.h

    r103977 r103988  
    100100    void prepareMachineWindows() RT_OVERRIDE;
    101101#ifndef VBOX_WS_MAC
    102     void prepareMenu();
     102    void prepareMenu() RT_OVERRIDE RT_FINAL;
    103103#endif /* !VBOX_WS_MAC */
    104104
    105105    /* Cleanup helpers: */
    106106#ifndef VBOX_WS_MAC
    107     void cleanupMenu();
     107    void cleanupMenu() RT_OVERRIDE RT_FINAL;
    108108#endif /* !VBOX_WS_MAC */
    109109    void cleanupMachineWindows() RT_OVERRIDE;
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.h

    r98103 r103988  
    5353
    5454    /* Handler: Frame-buffer SetVisibleRegion stuff: */
    55     virtual void sltHandleSetVisibleRegion(QRegion region);
     55    virtual void sltHandleSetVisibleRegion(QRegion region) RT_OVERRIDE RT_FINAL;
    5656
    5757private:
    5858
    5959    /* Event handlers: */
    60     bool eventFilter(QObject *pWatched, QEvent *pEvent);
     60    bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    6161
    6262    /* Prepare helpers: */
    63     void prepareCommon();
    64     void prepareFilters();
    65     void prepareConsoleConnections();
     63    void prepareCommon() RT_OVERRIDE RT_FINAL;
     64    void prepareFilters() RT_OVERRIDE RT_FINAL;
     65    void prepareConsoleConnections() RT_OVERRIDE RT_FINAL;
    6666    void prepareSeamless();
    6767
     
    7373
    7474    /** Adjusts guest-screen size to correspond current <i>working area</i> size. */
    75     void adjustGuestScreenSize();
     75    void adjustGuestScreenSize() RT_OVERRIDE RT_FINAL;
    7676
    7777    /* Helpers: Geometry stuff: */
    78     QRect workingArea() const;
    79     QSize calculateMaxGuestSize() const;
     78    QRect workingArea() const RT_OVERRIDE RT_FINAL;
     79    QSize calculateMaxGuestSize() const RT_OVERRIDE RT_FINAL;
    8080};
    8181
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineWindowSeamless.h

    r100064 r103988  
    5454#if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX)
    5555    /** Handles machine state change event. */
    56     void sltMachineStateChanged();
     56    void sltMachineStateChanged() RT_OVERRIDE RT_FINAL;
    5757
    5858    /** Revokes window activation. */
     
    7070
    7171    /** Prepare visual-state routine. */
    72     void prepareVisualState();
     72    void prepareVisualState() RT_OVERRIDE RT_FINAL;
    7373#if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX)
    7474    /** Prepare mini-toolbar routine. */
     
    8181#endif /* VBOX_WS_WIN || VBOX_WS_NIX */
    8282    /** Cleanup visual-state routine. */
    83     void cleanupVisualState();
     83    void cleanupVisualState() RT_OVERRIDE RT_FINAL;
    8484
    8585    /** Updates geometry according to visual-state. */
    8686    void placeOnScreen();
    8787    /** Updates visibility according to visual-state. */
    88     void showInNecessaryMode();
     88    void showInNecessaryMode() RT_OVERRIDE RT_FINAL;
    8989
    9090#if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX)
    9191    /** Common update routine. */
    92     void updateAppearanceOf(int iElement);
     92    void updateAppearanceOf(int iElement) RT_OVERRIDE RT_FINAL;
    9393#endif /* VBOX_WS_WIN || VBOX_WS_NIX */
    9494
    9595#ifdef VBOX_WS_NIX
    9696    /** X11: Handles @a pEvent about state change. */
    97     void changeEvent(QEvent *pEvent);
     97    void changeEvent(QEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9898#endif
    9999
     
    105105#ifdef VBOX_WITH_MASKED_SEAMLESS
    106106    /** Assigns guest seamless mask. */
    107     void setMask(const QRegion &maskGuest);
     107    void setMask(const QRegion &maskGuest) RT_OVERRIDE RT_FINAL;
    108108#endif /* VBOX_WITH_MASKED_SEAMLESS */
    109109
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDefs.h

    r103803 r103988  
    163163      * initial data were both set and not equal to each other.
    164164      * Takes into account all the children. */
    165     bool wasUpdated() const
     165    bool wasUpdated() const RT_OVERRIDE RT_FINAL
    166166    {
    167167        /* First of all, cache object is considered to be updated if parent data was updated: */
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsSelector.cpp

    r103169 r103988  
    196196
    197197    /** Paints @a index item with specified @a option using specified @a pPainter. */
    198     void paint(QPainter *pPainter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
     198    void paint(QPainter *pPainter, const QStyleOptionViewItem &option, const QModelIndex &index) const RT_OVERRIDE RT_FINAL;
    199199};
    200200
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UILanguageSettingsEditor.cpp

    r103362 r103988  
    7373
    7474    /** Returns whether this item is less than @a another one. */
    75     bool operator<(const QTreeWidgetItem &another) const;
     75    bool operator<(const QTreeWidgetItem &another) const RT_OVERRIDE RT_FINAL;
    7676
    7777private:
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIAddDiskEncryptionPasswordDialog.cpp

    r100347 r103988  
    128128
    129129    /** Returns the row count, taking optional @a parent instead of root if necessary. */
    130     virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
     130    virtual int rowCount(const QModelIndex &parent = QModelIndex()) const RT_OVERRIDE RT_FINAL;
    131131    /** Returns the column count, taking optional @a parent instead of root if necessary. */
    132     virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
     132    virtual int columnCount(const QModelIndex &parent = QModelIndex()) const RT_OVERRIDE RT_FINAL;
    133133
    134134    /** Returns the @a index flags. */
    135     virtual Qt::ItemFlags flags(const QModelIndex &index) const;
     135    virtual Qt::ItemFlags flags(const QModelIndex &index) const RT_OVERRIDE RT_FINAL;
    136136
    137137    /** Returns the header data for the @a iSection, @a orientation and @a iRole. */
    138     virtual QVariant headerData(int iSection, Qt::Orientation orientation, int iRole) const;
     138    virtual QVariant headerData(int iSection, Qt::Orientation orientation, int iRole) const RT_OVERRIDE RT_FINAL;
    139139
    140140    /** Returns the @a index data for the @a iRole. */
    141     virtual QVariant data(const QModelIndex &index, int iRole = Qt::DisplayRole) const;
     141    virtual QVariant data(const QModelIndex &index, int iRole = Qt::DisplayRole) const RT_OVERRIDE RT_FINAL;
    142142    /** Defines the @a index data for the @a iRole as @a value. */
    143     virtual bool setData(const QModelIndex &index, const QVariant &value, int iRole = Qt::EditRole);
     143    virtual bool setData(const QModelIndex &index, const QVariant &value, int iRole = Qt::EditRole) RT_OVERRIDE RT_FINAL;
    144144
    145145private:
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp

    r103538 r103988  
    9898
    9999    /** Show @a pEvent handler. */
    100     virtual void showEvent(QShowEvent *pEvent);
     100    virtual void showEvent(QShowEvent *pEvent) RT_OVERRIDE RT_FINAL;
    101101    /** Polish @a pEvent handler. */
    102102    virtual void polishEvent(QShowEvent *pEvent);
    103103    /** Resize @a pEvent handler. */
    104     virtual void resizeEvent(QResizeEvent *pEvent);
     104    virtual void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
    105105    /** Paint @a pEvent handler. */
    106     virtual void paintEvent(QPaintEvent *pEvent);
     106    virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL;
    107107
    108108private:
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupPaneDetails.h

    r98103 r103988  
    7171
    7272    /** Returns the details minimum size-hint. */
    73     QSize minimumSizeHint() const;
     73    QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL;
    7474    /** Defines the details @a minimumSizeHint. */
    7575    void setMinimumSizeHint(const QSize &minimumSizeHint);
     
    148148
    149149#endif /* !FEQT_INCLUDED_SRC_widgets_UIPopupPaneDetails_h */
    150 
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupPaneMessage.h

    r98103 r103988  
    7171
    7272    /** Returns the message minimum size-hint. */
    73     QSize minimumSizeHint() const;
     73    QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL;
    7474    /** Defines the message @a minimumSizeHint. */
    7575    void setMinimumSizeHint(const QSize &minimumSizeHint);
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStackViewport.h

    r98103 r103988  
    8282
    8383    /** Returns minimum size-hint. */
    84     QSize minimumSizeHint() const { return m_minimumSizeHint; }
     84    QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL { return m_minimumSizeHint; }
    8585
    8686public slots:
     
    117117
    118118#endif /* !FEQT_INCLUDED_SRC_widgets_UIPopupStackViewport_h */
    119 
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPortForwardingTable.cpp

    r103362 r103988  
    462462
    463463    /** Returns flags for item with certain @a index. */
    464     Qt::ItemFlags flags(const QModelIndex &index) const;
     464    Qt::ItemFlags flags(const QModelIndex &index) const RT_OVERRIDE RT_FINAL;
    465465
    466466    /** Returns row count of certain @a parent. */
    467     int rowCount(const QModelIndex &parent = QModelIndex()) const;
     467    int rowCount(const QModelIndex &parent = QModelIndex()) const RT_OVERRIDE RT_FINAL;
    468468
    469469    /** Returns column count of certain @a parent. */
    470     int columnCount(const QModelIndex &parent = QModelIndex()) const;
     470    int columnCount(const QModelIndex &parent = QModelIndex()) const RT_OVERRIDE RT_FINAL;
    471471
    472472    /** Returns header data.
     
    474474      * @param  enmOrientation  Brings the orientation of header we aquire data for.
    475475      * @param  iRole           Brings the role we aquire data for. */
    476     QVariant headerData(int iSection, Qt::Orientation enmOrientation, int iRole) const;
     476    QVariant headerData(int iSection, Qt::Orientation enmOrientation, int iRole) const RT_OVERRIDE RT_FINAL;
    477477
    478478    /** Defines the @a iRole data for item with @a index as @a value. */
    479     bool setData(const QModelIndex &index, const QVariant &value, int iRole = Qt::EditRole);
     479    bool setData(const QModelIndex &index, const QVariant &value, int iRole = Qt::EditRole) RT_OVERRIDE RT_FINAL;
    480480    /** Returns the @a iRole data for item with @a index. */
    481     QVariant data(const QModelIndex &index, int iRole) const;
     481    QVariant data(const QModelIndex &index, int iRole) const RT_OVERRIDE RT_FINAL;
    482482
    483483private:
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsRotatorButton.h

    r98103 r103988  
    9292
    9393    /* Helpers: Update stuff: */
    94     void refresh();
     94    void refresh() RT_OVERRIDE RT_FINAL;
    9595
    9696private:
     
    115115
    116116#endif /* !FEQT_INCLUDED_SRC_widgets_graphics_UIGraphicsRotatorButton_h */
    117 
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsTextPane.h

    r98103 r103988  
    6161
    6262    /** Returns whether contained text is empty. */
    63     bool isEmpty() const { return m_text.isEmpty(); }
     63    bool isEmpty() const  RT_OVERRIDE RT_FINAL{ return m_text.isEmpty(); }
    6464    /** Returns contained text. */
    6565    UITextTable &text() { return m_text; }
     
    7676
    7777    /** Notifies listeners about size-hint changes. */
    78     void updateGeometry();
     78    void updateGeometry() RT_OVERRIDE RT_FINAL;
    7979    /** Returns the size-hint to constrain the content. */
    80     QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const;
     80    QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const RT_OVERRIDE RT_FINAL;
    8181
    8282    /** This event handler is delivered after the widget has been resized. */
    83     void resizeEvent(QGraphicsSceneResizeEvent *pEvent);
     83    void resizeEvent(QGraphicsSceneResizeEvent *pEvent) RT_OVERRIDE RT_FINAL;
    8484
    8585    /** This event handler called when mouse hovers widget. */
    86     void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent);
     86    void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent) RT_OVERRIDE RT_FINAL;
    8787    /** This event handler called when mouse leaves widget. */
    88     void hoverMoveEvent(QGraphicsSceneHoverEvent *pEvent);
     88    void hoverMoveEvent(QGraphicsSceneHoverEvent *pEvent) RT_OVERRIDE RT_FINAL;
    8989    /** Summarize two hover-event handlers above. */
    9090    void handleHoverEvent(QGraphicsSceneHoverEvent *pEvent);
     
    9393
    9494    /** This event handler called when mouse press widget. */
    95     void mousePressEvent(QGraphicsSceneMouseEvent *pEvent);
     95    void mousePressEvent(QGraphicsSceneMouseEvent *pEvent) RT_OVERRIDE RT_FINAL;
    9696
    9797    /** Paints the contents in local coordinates. */
    98     void paint(QPainter *pPainter, const QStyleOptionGraphicsItem *pOption, QWidget *pWidget = 0);
     98    void paint(QPainter *pPainter, const QStyleOptionGraphicsItem *pOption, QWidget *pWidget = 0) RT_OVERRIDE RT_FINAL;
    9999
    100100    /** Builds new text-layout. */
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsToolBar.h

    r98103 r103988  
    6464
    6565    /* Helpers: Layout stuff: */
    66     QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const;
     66    QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const  RT_OVERRIDE RT_FINAL;
    6767
    6868private:
     
    7676
    7777#endif /* !FEQT_INCLUDED_SRC_widgets_graphics_UIGraphicsToolBar_h */
    78 
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsZoomButton.h

    r103704 r103988  
    7878
    7979    /* Data provider: */
    80     QVariant data(int iKey) const;
     80    QVariant data(int iKey) const RT_OVERRIDE RT_FINAL;
    8181
    8282    /* Handler: Mouse hover: */
    83     void hoverEnterEvent(QGraphicsSceneHoverEvent *pEvent);
    84     void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent);
     83    void hoverEnterEvent(QGraphicsSceneHoverEvent *pEvent) RT_OVERRIDE RT_FINAL;
     84    void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent) RT_OVERRIDE RT_FINAL;
    8585
    8686    /* Paint stuff: */
    87     void paint(QPainter *pPainter, const QStyleOptionGraphicsItem *pOption, QWidget *pWidget = 0);
     87    void paint(QPainter *pPainter, const QStyleOptionGraphicsItem *pOption, QWidget *pWidget = 0) RT_OVERRIDE RT_FINAL;
    8888
    8989private:
     
    107107
    108108#endif /* !FEQT_INCLUDED_SRC_widgets_graphics_UIGraphicsZoomButton_h */
    109 
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageVMs.cpp

    r103957 r103988  
    6161
    6262    /** Returns whether this item is less than @a other. */
    63     bool operator<(const QListWidgetItem &other) const
     63    bool operator<(const QListWidgetItem &other) const RT_OVERRIDE RT_FINAL
    6464    {
    6565        return text().toLower() < other.text().toLower();
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette