summaryrefslogtreecommitdiff
path: root/user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch
diff options
context:
space:
mode:
authorKiyoshi Aman <kiyoshi.aman+apkfission@gmail.com>2019-01-27 05:14:45 -0600
committerKiyoshi Aman <kiyoshi.aman+apkfission@gmail.com>2019-01-27 09:24:46 -0600
commitd15750a567e3388e81a1240d7e01443176a944bd (patch)
tree44f00315ab9150411e936da13b24d37115f7ca58 /user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch
parent1f9ef36be7d5e97da1765f1ed0c8f01a927e8bc0 (diff)
downloadpackages-d15750a567e3388e81a1240d7e01443176a944bd.tar.gz
packages-d15750a567e3388e81a1240d7e01443176a944bd.tar.bz2
packages-d15750a567e3388e81a1240d7e01443176a944bd.tar.xz
packages-d15750a567e3388e81a1240d7e01443176a944bd.zip
user/pcmanfm-qt: upgrade to 0.14.0
Diffstat (limited to 'user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch')
-rw-r--r--user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch b/user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch
deleted file mode 100644
index b52ce1a9f..000000000
--- a/user/pcmanfm-qt/pcmanfm-qt-0.11.3-const-iterator-fixes.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -Nurd pcmanfm-qt-0.11.3/pcmanfm/mainwindow.cpp pcmanfm-qt-0.11.3.new/pcmanfm/mainwindow.cpp
---- pcmanfm-qt-0.11.3/pcmanfm/mainwindow.cpp 2017-01-14 02:13:45.000000000 +0000
-+++ pcmanfm-qt-0.11.3.new/pcmanfm/mainwindow.cpp 2017-10-12 20:44:25.731044585 +0000
-@@ -970,8 +970,8 @@
- void MainWindow::onBookmarksChanged(FmBookmarks* bookmarks, MainWindow* pThis) {
- // delete existing items
- QList<QAction*> actions = pThis->ui.menu_Bookmarks->actions();
-- QList<QAction*>::const_iterator it = actions.begin();
-- QList<QAction*>::const_iterator last_it = actions.end() - 2;
-+ QList<QAction*>::const_iterator it = actions.constBegin();
-+ QList<QAction*>::const_iterator last_it = actions.constEnd() - 2;
-
- while(it != last_it) {
- QAction* action = *it;
-diff -Nurd pcmanfm-qt-0.11.3/pcmanfm/preferencesdialog.cpp pcmanfm-qt-0.11.3.new/pcmanfm/preferencesdialog.cpp
---- pcmanfm-qt-0.11.3/pcmanfm/preferencesdialog.cpp 2017-01-14 02:13:45.000000000 +0000
-+++ pcmanfm-qt-0.11.3.new/pcmanfm/preferencesdialog.cpp 2017-10-12 20:45:17.324377059 +0000
-@@ -90,7 +90,7 @@
-
- iconThemes.remove("hicolor"); // remove hicolor, which is only a fallback
- QHash<QString, QString>::const_iterator it;
-- for(it = iconThemes.begin(); it != iconThemes.end(); ++it) {
-+ for(it = iconThemes.constBegin(); it != iconThemes.constEnd(); ++it) {
- ui.iconTheme->addItem(it.value(), it.key());
- }
- ui.iconTheme->model()->sort(0); // sort the list of icon theme names