- Timestamp:
- Mar 21, 2024 1:49:47 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 162373
- 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 444 444 protected: 445 445 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 {} 447 447 }; 448 448 -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIAdvancedSlider.cpp
r98103 r103988 73 73 74 74 /** Handles paint @a pEvent. */ 75 virtual void paintEvent(QPaintEvent *pEvent) ;75 virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 76 76 77 77 private: -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIArrowSplitter.cpp
r98103 r103988 57 57 58 58 /** Returns minimum size-hint. */ 59 QSize minimumSizeHint() const ;59 QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL; 60 60 /** Returns size-hint. */ 61 QSize sizeHint() const ;61 QSize sizeHint() const RT_OVERRIDE RT_FINAL; 62 62 63 63 /** Update scroll-bars. */ -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QILabel.h
r103362 r103988 63 63 void useSizeHintForWidth(int iWidthHint) const; 64 64 /** Returns size-hint. */ 65 QSize sizeHint() const ;65 QSize sizeHint() const RT_OVERRIDE RT_FINAL; 66 66 /** Returns minimum size-hint. */ 67 QSize minimumSizeHint() const ;67 QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL; 68 68 69 69 /** Returns text. */ … … 82 82 83 83 /** Handles resize @a pEvent. */ 84 void resizeEvent(QResizeEvent *pEvent) ;84 void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL; 85 85 86 86 /** Handles mouse-press @a pEvent. */ 87 void mousePressEvent(QMouseEvent *pEvent) ;87 void mousePressEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 88 88 /** Handles mouse-release @a pEvent. */ 89 void mouseReleaseEvent(QMouseEvent *pEvent) ;89 void mouseReleaseEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 90 90 /** Handles mouse-move @a pEvent. */ 91 void mouseMoveEvent(QMouseEvent *pEvent) ;91 void mouseMoveEvent(QMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 92 92 93 93 /** Handles context-menu @a pEvent. */ 94 void contextMenuEvent(QContextMenuEvent *pEvent) ;94 void contextMenuEvent(QContextMenuEvent *pEvent) RT_OVERRIDE RT_FINAL; 95 95 96 96 /** Handles focus-in @a pEvent. */ 97 void focusInEvent(QFocusEvent *pEvent) ;97 void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 98 98 /** Handles focus-out @a pEvent. */ 99 void focusOutEvent(QFocusEvent *pEvent) ;99 void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 100 100 101 101 /** Handles paint @a pEvent. */ 102 void paintEvent(QPaintEvent *pEvent) ;102 void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 103 103 104 104 private: -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITableWidget.h
r98103 r103988 89 89 90 90 /** Handles paint @a pEvent. */ 91 void paintEvent(QPaintEvent *pEvent) ;91 void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 92 92 /** Handles resize @a pEvent. */ 93 void resizeEvent(QResizeEvent *pEvent) ;93 void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL; 94 94 }; 95 95 -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QITreeWidget.h
r101399 r103988 133 133 134 134 /** Handles paint @a pEvent. */ 135 void paintEvent(QPaintEvent *pEvent) ;135 void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 136 136 /** Handles resize @a pEvent. */ 137 void resizeEvent(QResizeEvent *pEvent) ;137 void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL; 138 138 139 139 private: -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIWidgetValidator.h
r100959 r103988 146 146 147 147 /** 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; 149 149 150 150 /** Defines @a uBottom. */ -
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
r103803 r103988 298 298 299 299 /** 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; 301 301 302 302 /** 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; 304 304 305 305 /** Fetch pixmap info for passed QModelIndex. */ … … 450 450 * is less than the value of the item referred to by the given index right, 451 451 * 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 453 453 { 454 454 /* Compare by ID first: */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/QIWithRetranslateUI.h
r99949 r103988 62 62 63 63 /** 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 65 65 { 66 66 /* If translation is NOT currently in progress handle … … 106 106 107 107 /** 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 109 109 { 110 110 /* If translation is NOT currently in progress handle … … 140 140 141 141 /** 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 143 143 { 144 144 /* If translation is NOT currently in progress handle … … 183 183 184 184 /** 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 186 186 { 187 187 /* If translation is NOT currently in progress handle … … 202 202 203 203 #endif /* !FEQT_INCLUDED_SRC_globals_QIWithRetranslateUI_h */ 204 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
r103552 r103988 220 220 221 221 /** Handles any Qt @a pEvent. */ 222 virtual bool event(QEvent *pEvent) ;222 virtual bool event(QEvent *pEvent) RT_OVERRIDE RT_FINAL; 223 223 224 224 private: -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r103918 r103988 2652 2652 2653 2653 /** Handles any Qt @a pEvent. */ 2654 bool event(QEvent *pEvent) 2654 bool event(QEvent *pEvent) RT_OVERRIDE RT_FINAL 2655 2655 { 2656 2656 /* Handle service event: */ … … 2681 2681 2682 2682 /** Executes thread task. */ 2683 void run() 2683 void run() RT_OVERRIDE RT_FINAL 2684 2684 { 2685 2685 QApplication::postEvent(&m_client, new ServiceEvent(QDesktopServices::openUrl(m_strUrl))); -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.cpp
r103551 r103988 155 155 156 156 /** Move @a pEvent handler. */ 157 void moveEvent(QMoveEvent *pEvent) ;157 void moveEvent(QMoveEvent *pEvent) RT_OVERRIDE RT_FINAL; 158 158 /** Resize @a pEvent handler. */ 159 void resizeEvent(QResizeEvent *pEvent) ;159 void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL; 160 160 161 161 /** Holds the index of the host-screen this window created for. */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIThreadPool.cpp
r98103 r103988 65 65 66 66 /** Contains the worker-thread body. */ 67 void run() ;67 void run() RT_OVERRIDE RT_FINAL; 68 68 69 69 /** Holds the worker-thread pool reference. */ -
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerTable.cpp
r103982 r103988 111 111 protected: 112 112 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{} 114 114 }; 115 115 -
trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerPreferencesWidget.h
r103923 r103988 68 68 protected: 69 69 70 virtual void prepareWidgets() ;71 virtual void prepareConnections() ;70 virtual void prepareWidgets() RT_OVERRIDE RT_FINAL; 71 virtual void prepareConnections() RT_OVERRIDE RT_FINAL; 72 72 73 73 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerTextEdit.cpp
r103982 r103988 197 197 public: 198 198 UILineNumberArea(UIVMLogViewerTextEdit *textEdit); 199 QSize sizeHint() const ;199 QSize sizeHint() const RT_OVERRIDE RT_FINAL; 200 200 201 201 protected: 202 202 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; 206 206 207 207 private: -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserItem.h
r103704 r103988 73 73 74 74 /** Draws effect with passed @a pPainter. */ 75 virtual void draw(QPainter *pPainter) ;75 virtual void draw(QPainter *pPainter) RT_OVERRIDE RT_FINAL;; 76 76 77 77 private: -
trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElements.h
r103977 r103988 174 174 175 175 /** Contains update task body. */ 176 void run() ;176 void run() RT_OVERRIDE RT_FINAL; 177 177 178 178 /** Holds the options. */ … … 194 194 195 195 /** Contains update task body. */ 196 void run() ;196 void run() RT_OVERRIDE RT_FINAL; 197 197 198 198 /** Holds the options. */ … … 233 233 234 234 /** Contains update task body. */ 235 void run() ;235 void run() RT_OVERRIDE RT_FINAL; 236 236 237 237 /** Holds the options. */ … … 272 272 273 273 /** Contains update task body. */ 274 void run() ;274 void run() RT_OVERRIDE RT_FINAL; 275 275 276 276 /** Holds the options. */ … … 311 311 312 312 /** Contains update task body. */ 313 void run() ;313 void run() RT_OVERRIDE RT_FINAL; 314 314 315 315 /** Holds the options. */ … … 350 350 351 351 /** Contains update task body. */ 352 void run() ;352 void run() RT_OVERRIDE RT_FINAL; 353 353 354 354 /** Holds the options. */ … … 389 389 390 390 /** Contains update task body. */ 391 void run() ;391 void run() RT_OVERRIDE RT_FINAL; 392 392 393 393 /** Holds the options. */ … … 428 428 429 429 /** Contains update task body. */ 430 void run() ;430 void run() RT_OVERRIDE RT_FINAL; 431 431 432 432 /** Holds the options. */ … … 467 467 468 468 /** Contains update task body. */ 469 void run() ;469 void run() RT_OVERRIDE RT_FINAL; 470 470 471 471 /** Holds the options. */ … … 506 506 507 507 /** Contains update task body. */ 508 void run() ;508 void run() RT_OVERRIDE RT_FINAL; 509 509 510 510 /** Holds the options. */ … … 545 545 546 546 /** Contains update task body. */ 547 void run() ;547 void run() RT_OVERRIDE RT_FINAL; 548 548 549 549 /** Holds the options. */ … … 584 584 585 585 /** Contains update task body. */ 586 void run() ;586 void run() RT_OVERRIDE RT_FINAL; 587 587 588 588 /** Holds the options. */ … … 609 609 610 610 #endif /* !FEQT_INCLUDED_SRC_manager_details_UIDetailsElements_h */ 611 -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.cpp
r103803 r103988 82 82 private: 83 83 /** 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; } 85 85 /** Holds the @a uID to compare to. */ 86 86 QUuid m_uID; … … 96 96 private: 97 97 /** 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; } 99 99 /** Holds the @a state to compare to. */ 100 100 KMediumState m_state; -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumSearchWidget.cpp
r101571 r103988 60 60 , m_strSearchTerm(strSearchTerm){} 61 61 virtual ~FilterByNameUUID(){} 62 virtual bool operator()(QTreeWidgetItem *pItem) const 62 virtual bool operator()(QTreeWidgetItem *pItem) const RT_OVERRIDE RT_FINAL 63 63 { 64 64 if (!pItem || m_strSearchTerm.isEmpty()) -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoContentBrowser.cpp
r103320 r103988 163 163 protected: 164 164 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{} 166 166 }; 167 167 … … 184 184 185 185 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; 189 189 bool hasSelection() const; 190 190 }; -
trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreator.h
r103982 r103988 64 64 private: 65 65 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; 67 67 virtual void retranslateUi() RT_OVERRIDE RT_FINAL; 68 68 QPointer<QMenu> m_pSubMenu; -
trunk/src/VBox/Frontends/VirtualBox/src/networking/UINetworkReply.cpp
r103771 r103988 112 112 113 113 /** Performs whole thread functionality. */ 114 void run() ;114 void run() RT_OVERRIDE RT_FINAL; 115 115 116 116 /** Handles download progress callback. -
trunk/src/VBox/Frontends/VirtualBox/src/networking/UINewVersionChecker.h
r98103 r103988 71 71 72 72 /** 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; 74 74 /** 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; 76 76 /** 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; 78 78 /** 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; 80 80 81 81 private: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.h
r100064 r103988 149 149 150 150 /* Event handler for registered machine-view(s): */ 151 bool eventFilter(QObject *pWatchedObject, QEvent *pEvent) ;151 bool eventFilter(QObject *pWatchedObject, QEvent *pEvent) RT_OVERRIDE; 152 152 153 153 #if defined(VBOX_WS_MAC) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r103711 r103988 113 113 114 114 /** 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 116 116 { 117 117 return m_pParent->nativeEventPreprocessor(eventType, pMessage); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.h
r103803 r103988 269 269 /* Protected getters: */ 270 270 UIActionPool* actionPool() const; 271 QSize sizeHint() const ;271 QSize sizeHint() const RT_OVERRIDE; 272 272 273 273 /** Retrieves the last guest-screen size-hint from extra-data. */ … … 305 305 virtual void updateSliders(); 306 306 static void dimImage(QImage &img); 307 void scrollContentsBy(int dx, int dy) ;307 void scrollContentsBy(int dx, int dy) RT_OVERRIDE RT_FINAL; 308 308 #ifdef VBOX_WS_MAC 309 309 void updateDockIcon(); … … 314 314 315 315 /* 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; 320 320 321 321 /** Handles focus-in @a pEvent. */ 322 void focusInEvent(QFocusEvent *pEvent) ;322 void focusInEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 323 323 /** Handles focus-out @a pEvent. */ 324 void focusOutEvent(QFocusEvent *pEvent) ;324 void focusOutEvent(QFocusEvent *pEvent) RT_OVERRIDE RT_FINAL; 325 325 #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; 328 328 #endif 329 329 … … 348 348 * @param pEvent Related enter event. 349 349 */ 350 void dragEnterEvent(QDragEnterEvent *pEvent) ;350 void dragEnterEvent(QDragEnterEvent *pEvent) RT_OVERRIDE RT_FINAL; 351 351 352 352 /** … … 357 357 * @param pEvent Related move event. 358 358 */ 359 void dragLeaveEvent(QDragLeaveEvent *pEvent) ;359 void dragLeaveEvent(QDragLeaveEvent *pEvent) RT_OVERRIDE RT_FINAL; 360 360 361 361 /** … … 365 365 * @param pEvent Related leave event. 366 366 */ 367 void dragMoveEvent(QDragMoveEvent *pEvent) ;367 void dragMoveEvent(QDragMoveEvent *pEvent) RT_OVERRIDE RT_FINAL; 368 368 369 369 /** … … 372 372 * @param pEvent Related drop event. 373 373 */ 374 void dropEvent(QDropEvent *pEvent) ;374 void dropEvent(QDropEvent *pEvent) RT_OVERRIDE RT_FINAL; 375 375 #endif /* VBOX_WITH_DRAG_AND_DROP */ 376 376 … … 465 465 protected: 466 466 467 void timerEvent(QTimerEvent *pEvent) 467 void timerEvent(QTimerEvent *pEvent) RT_OVERRIDE RT_FINAL 468 468 { 469 469 /* If that timer event occurs => it seems -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.h
r98520 r103988 109 109 110 110 /* 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; 112 112 113 113 /* Separate function to handle most of existing mouse-events: */ … … 155 155 156 156 #endif /* !FEQT_INCLUDED_SRC_runtime_UIMouseHandler_h */ 157 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIKeyboardHandlerFullscreen.h
r98103 r103988 51 51 52 52 /** General event-filter. */ 53 bool eventFilter(QObject *pWatched, QEvent *pEvent) ;53 bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 54 54 }; 55 55 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.h
r100064 r103988 77 77 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX) 78 78 /** Handles machine state change event. */ 79 void sltMachineStateChanged() ;79 void sltMachineStateChanged() RT_OVERRIDE RT_FINAL; 80 80 81 81 /** Revokes window activation. */ … … 100 100 101 101 /** Prepare notification-center routine. */ 102 void prepareNotificationCenter() ;102 void prepareNotificationCenter() RT_OVERRIDE RT_FINAL; 103 103 /** Prepare visual-state routine. */ 104 void prepareVisualState() ;104 void prepareVisualState() RT_OVERRIDE RT_FINAL; 105 105 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX) 106 106 /** Prepare mini-toolbar routine. */ … … 113 113 #endif /* VBOX_WS_WIN || VBOX_WS_NIX */ 114 114 /** Cleanup visual-state routine. */ 115 void cleanupVisualState() ;115 void cleanupVisualState() RT_OVERRIDE RT_FINAL; 116 116 /** Cleanup notification-center routine. */ 117 void cleanupNotificationCenter() ;117 void cleanupNotificationCenter() RT_OVERRIDE RT_FINAL; 118 118 119 119 /** Updates geometry according to visual-state. */ 120 120 void placeOnScreen(); 121 121 /** Updates visibility according to visual-state. */ 122 void showInNecessaryMode() ;122 void showInNecessaryMode() RT_OVERRIDE RT_FINAL; 123 123 124 124 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX) 125 125 /** Common update routine. */ 126 void updateAppearanceOf(int iElement) ;126 void updateAppearanceOf(int iElement) RT_OVERRIDE RT_FINAL; 127 127 #endif /* VBOX_WS_WIN || VBOX_WS_NIX */ 128 128 129 129 #ifdef VBOX_WS_NIX 130 130 /** X11: Handles @a pEvent about state change. */ 131 void changeEvent(QEvent *pEvent) ;131 void changeEvent(QEvent *pEvent) RT_OVERRIDE RT_FINAL; 132 132 #endif 133 133 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIKeyboardHandlerNormal.h
r98103 r103988 52 52 #ifndef VBOX_WS_MAC 53 53 /** General event-filter. */ 54 bool eventFilter(QObject *pWatched, QEvent *pEvent) ;54 bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 55 55 #endif /* !VBOX_WS_MAC */ 56 56 }; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.h
r103977 r103988 93 93 void prepareMachineWindows() RT_OVERRIDE; 94 94 #ifndef VBOX_WS_MAC 95 void prepareMenu() ;95 void prepareMenu() RT_OVERRIDE RT_FINAL; 96 96 #endif /* !VBOX_WS_MAC */ 97 97 98 98 /* Cleanup helpers: */ 99 99 #ifndef VBOX_WS_MAC 100 void cleanupMenu() ;100 void cleanupMenu() RT_OVERRIDE RT_FINAL; 101 101 #endif /* !VBOX_WS_MAC */ 102 102 void cleanupMachineWindows() RT_OVERRIDE; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.h
r103977 r103988 83 83 #ifndef VBOX_WS_MAC 84 84 /** Prepare menu routine. */ 85 void prepareMenu() ;85 void prepareMenu() RT_OVERRIDE RT_FINAL; 86 86 #endif /* !VBOX_WS_MAC */ 87 87 /** Prepare status-bar routine. */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIKeyboardHandlerScale.h
r98103 r103988 52 52 #ifndef VBOX_WS_MAC 53 53 /** General event-filter. */ 54 bool eventFilter(QObject *pWatched, QEvent *pEvent) ;54 bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 55 55 #endif /* !VBOX_WS_MAC */ 56 56 }; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineLogicScale.h
r103977 r103988 74 74 void prepareMachineWindows() RT_OVERRIDE; 75 75 #ifndef RT_OS_DARWIN 76 void prepareMenu() ;76 void prepareMenu() RT_OVERRIDE RT_FINAL; 77 77 #endif /* !RT_OS_DARWIN */ 78 78 79 79 /* Cleanup helpers: */ 80 80 #ifndef RT_OS_DARWIN 81 void cleanupMenu() ;81 void cleanupMenu() RT_OVERRIDE RT_FINAL; 82 82 #endif /* !RT_OS_DARWIN */ 83 83 void cleanupMachineWindows() RT_OVERRIDE; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineViewScale.h
r98103 r103988 55 55 56 56 /* Event handlers: */ 57 bool eventFilter(QObject *pWatched, QEvent *pEvent) ;57 bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 58 58 59 59 /** Applies machine-view scale-factor. */ 60 void applyMachineViewScaleFactor() ;60 void applyMachineViewScaleFactor() RT_OVERRIDE RT_FINAL; 61 61 62 62 /** Resends guest size-hint. */ 63 void resendSizeHint() ;63 void resendSizeHint() RT_OVERRIDE RT_FINAL; 64 64 65 65 /* 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; 70 70 }; 71 71 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIKeyboardHandlerSeamless.h
r98103 r103988 52 52 #ifndef VBOX_WS_MAC 53 53 /** General event-filter. */ 54 bool eventFilter(QObject *pWatched, QEvent *pEvent) ;54 bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 55 55 #endif /* !VBOX_WS_MAC */ 56 56 }; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineLogicSeamless.h
r103977 r103988 100 100 void prepareMachineWindows() RT_OVERRIDE; 101 101 #ifndef VBOX_WS_MAC 102 void prepareMenu() ;102 void prepareMenu() RT_OVERRIDE RT_FINAL; 103 103 #endif /* !VBOX_WS_MAC */ 104 104 105 105 /* Cleanup helpers: */ 106 106 #ifndef VBOX_WS_MAC 107 void cleanupMenu() ;107 void cleanupMenu() RT_OVERRIDE RT_FINAL; 108 108 #endif /* !VBOX_WS_MAC */ 109 109 void cleanupMachineWindows() RT_OVERRIDE; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.h
r98103 r103988 53 53 54 54 /* Handler: Frame-buffer SetVisibleRegion stuff: */ 55 virtual void sltHandleSetVisibleRegion(QRegion region) ;55 virtual void sltHandleSetVisibleRegion(QRegion region) RT_OVERRIDE RT_FINAL; 56 56 57 57 private: 58 58 59 59 /* Event handlers: */ 60 bool eventFilter(QObject *pWatched, QEvent *pEvent) ;60 bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL; 61 61 62 62 /* 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; 66 66 void prepareSeamless(); 67 67 … … 73 73 74 74 /** Adjusts guest-screen size to correspond current <i>working area</i> size. */ 75 void adjustGuestScreenSize() ;75 void adjustGuestScreenSize() RT_OVERRIDE RT_FINAL; 76 76 77 77 /* 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; 80 80 }; 81 81 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineWindowSeamless.h
r100064 r103988 54 54 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX) 55 55 /** Handles machine state change event. */ 56 void sltMachineStateChanged() ;56 void sltMachineStateChanged() RT_OVERRIDE RT_FINAL; 57 57 58 58 /** Revokes window activation. */ … … 70 70 71 71 /** Prepare visual-state routine. */ 72 void prepareVisualState() ;72 void prepareVisualState() RT_OVERRIDE RT_FINAL; 73 73 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX) 74 74 /** Prepare mini-toolbar routine. */ … … 81 81 #endif /* VBOX_WS_WIN || VBOX_WS_NIX */ 82 82 /** Cleanup visual-state routine. */ 83 void cleanupVisualState() ;83 void cleanupVisualState() RT_OVERRIDE RT_FINAL; 84 84 85 85 /** Updates geometry according to visual-state. */ 86 86 void placeOnScreen(); 87 87 /** Updates visibility according to visual-state. */ 88 void showInNecessaryMode() ;88 void showInNecessaryMode() RT_OVERRIDE RT_FINAL; 89 89 90 90 #if defined(VBOX_WS_WIN) || defined(VBOX_WS_NIX) 91 91 /** Common update routine. */ 92 void updateAppearanceOf(int iElement) ;92 void updateAppearanceOf(int iElement) RT_OVERRIDE RT_FINAL; 93 93 #endif /* VBOX_WS_WIN || VBOX_WS_NIX */ 94 94 95 95 #ifdef VBOX_WS_NIX 96 96 /** X11: Handles @a pEvent about state change. */ 97 void changeEvent(QEvent *pEvent) ;97 void changeEvent(QEvent *pEvent) RT_OVERRIDE RT_FINAL; 98 98 #endif 99 99 … … 105 105 #ifdef VBOX_WITH_MASKED_SEAMLESS 106 106 /** Assigns guest seamless mask. */ 107 void setMask(const QRegion &maskGuest) ;107 void setMask(const QRegion &maskGuest) RT_OVERRIDE RT_FINAL; 108 108 #endif /* VBOX_WITH_MASKED_SEAMLESS */ 109 109 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDefs.h
r103803 r103988 163 163 * initial data were both set and not equal to each other. 164 164 * Takes into account all the children. */ 165 bool wasUpdated() const 165 bool wasUpdated() const RT_OVERRIDE RT_FINAL 166 166 { 167 167 /* 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 196 196 197 197 /** 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; 199 199 }; 200 200 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UILanguageSettingsEditor.cpp
r103362 r103988 73 73 74 74 /** 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; 76 76 77 77 private: -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIAddDiskEncryptionPasswordDialog.cpp
r100347 r103988 128 128 129 129 /** 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; 131 131 /** 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; 133 133 134 134 /** 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; 136 136 137 137 /** 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; 139 139 140 140 /** 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; 142 142 /** 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; 144 144 145 145 private: -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp
r103538 r103988 98 98 99 99 /** Show @a pEvent handler. */ 100 virtual void showEvent(QShowEvent *pEvent) ;100 virtual void showEvent(QShowEvent *pEvent) RT_OVERRIDE RT_FINAL; 101 101 /** Polish @a pEvent handler. */ 102 102 virtual void polishEvent(QShowEvent *pEvent); 103 103 /** Resize @a pEvent handler. */ 104 virtual void resizeEvent(QResizeEvent *pEvent) ;104 virtual void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE RT_FINAL; 105 105 /** Paint @a pEvent handler. */ 106 virtual void paintEvent(QPaintEvent *pEvent) ;106 virtual void paintEvent(QPaintEvent *pEvent) RT_OVERRIDE RT_FINAL; 107 107 108 108 private: -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupPaneDetails.h
r98103 r103988 71 71 72 72 /** Returns the details minimum size-hint. */ 73 QSize minimumSizeHint() const ;73 QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL; 74 74 /** Defines the details @a minimumSizeHint. */ 75 75 void setMinimumSizeHint(const QSize &minimumSizeHint); … … 148 148 149 149 #endif /* !FEQT_INCLUDED_SRC_widgets_UIPopupPaneDetails_h */ 150 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupPaneMessage.h
r98103 r103988 71 71 72 72 /** Returns the message minimum size-hint. */ 73 QSize minimumSizeHint() const ;73 QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL; 74 74 /** Defines the message @a minimumSizeHint. */ 75 75 void setMinimumSizeHint(const QSize &minimumSizeHint); -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStackViewport.h
r98103 r103988 82 82 83 83 /** Returns minimum size-hint. */ 84 QSize minimumSizeHint() const { return m_minimumSizeHint; }84 QSize minimumSizeHint() const RT_OVERRIDE RT_FINAL { return m_minimumSizeHint; } 85 85 86 86 public slots: … … 117 117 118 118 #endif /* !FEQT_INCLUDED_SRC_widgets_UIPopupStackViewport_h */ 119 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPortForwardingTable.cpp
r103362 r103988 462 462 463 463 /** 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; 465 465 466 466 /** 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; 468 468 469 469 /** 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; 471 471 472 472 /** Returns header data. … … 474 474 * @param enmOrientation Brings the orientation of header we aquire data for. 475 475 * @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; 477 477 478 478 /** 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; 480 480 /** 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; 482 482 483 483 private: -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsRotatorButton.h
r98103 r103988 92 92 93 93 /* Helpers: Update stuff: */ 94 void refresh() ;94 void refresh() RT_OVERRIDE RT_FINAL; 95 95 96 96 private: … … 115 115 116 116 #endif /* !FEQT_INCLUDED_SRC_widgets_graphics_UIGraphicsRotatorButton_h */ 117 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsTextPane.h
r98103 r103988 61 61 62 62 /** 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(); } 64 64 /** Returns contained text. */ 65 65 UITextTable &text() { return m_text; } … … 76 76 77 77 /** Notifies listeners about size-hint changes. */ 78 void updateGeometry() ;78 void updateGeometry() RT_OVERRIDE RT_FINAL; 79 79 /** 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; 81 81 82 82 /** 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; 84 84 85 85 /** This event handler called when mouse hovers widget. */ 86 void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent) ;86 void hoverLeaveEvent(QGraphicsSceneHoverEvent *pEvent) RT_OVERRIDE RT_FINAL; 87 87 /** This event handler called when mouse leaves widget. */ 88 void hoverMoveEvent(QGraphicsSceneHoverEvent *pEvent) ;88 void hoverMoveEvent(QGraphicsSceneHoverEvent *pEvent) RT_OVERRIDE RT_FINAL; 89 89 /** Summarize two hover-event handlers above. */ 90 90 void handleHoverEvent(QGraphicsSceneHoverEvent *pEvent); … … 93 93 94 94 /** This event handler called when mouse press widget. */ 95 void mousePressEvent(QGraphicsSceneMouseEvent *pEvent) ;95 void mousePressEvent(QGraphicsSceneMouseEvent *pEvent) RT_OVERRIDE RT_FINAL; 96 96 97 97 /** 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; 99 99 100 100 /** Builds new text-layout. */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsToolBar.h
r98103 r103988 64 64 65 65 /* 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; 67 67 68 68 private: … … 76 76 77 77 #endif /* !FEQT_INCLUDED_SRC_widgets_graphics_UIGraphicsToolBar_h */ 78 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsZoomButton.h
r103704 r103988 78 78 79 79 /* Data provider: */ 80 QVariant data(int iKey) const ;80 QVariant data(int iKey) const RT_OVERRIDE RT_FINAL; 81 81 82 82 /* 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; 85 85 86 86 /* 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; 88 88 89 89 private: … … 107 107 108 108 #endif /* !FEQT_INCLUDED_SRC_widgets_graphics_UIGraphicsZoomButton_h */ 109 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageVMs.cpp
r103957 r103988 61 61 62 62 /** 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 64 64 { 65 65 return text().toLower() < other.text().toLower();
Note:
See TracChangeset
for help on using the changeset viewer.