diff --git a/changes_porting_qt5.txt b/changes_porting_qt5.txt index 9f9a29e3..d79aba91 100644 --- a/changes_porting_qt5.txt +++ b/changes_porting_qt5.txt @@ -734,5 +734,38 @@ WBHistory.cpp - comment and remove //beginResetModel(); and //endResetModel(); (Line 837-843) +UBApplication.cpp +------------------ + +-remove and comment //QApplication::setStyle(new UBStyle()); // Style is owned and deleted by the application. + + +UBTrapFlashController.h +----------------------- + +- replace //#include by #include . + +UBTrapFlashController.cpp +------------------------- +- replace //#ifdef Q_WS_WIN // Defined on Windows. by#ifdef Q_OS_WIN // Defined on Windows. + + +UBPodcastController.cpp +------------------------- + +-replace QDesktopServices::storageLocation. (Line 715) + +-replace by QStandardPaths::writableLocation. + +-replace repaintRect = repaintRect.unite(mSceneRepaintRectQueue.dequeue()); by repaintRect = repaintRect.united(mSceneRepaintRectQueue.dequeue()); + +- replace QRectF maxRect = rect.intersect(viewportRect); by RectF maxRect = rect.intersected(viewportRect); + +- replace repaintRect = repaintRect.unite(mWidgetRepaintRectQueue.dequeue()); by repaintRect = repaintRect.united(mWidgetRepaintRectQueue.dequeue()); + + + + +