diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-01-27 20:30:55 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-01-27 20:30:55 +0000 |
commit | 20ed702c35ad049d359ddb5a0407269c619ae884 (patch) | |
tree | 8992ff130c1895176bf25da3ba1a1ce1fed20389 /user/libfm-qt/libfm-qt-0.11.2-const-fixes.patch | |
parent | 8179d35ff1daa7f0e079a13cba05b041515d489d (diff) | |
parent | 2cb0d9b4f32974ef48f8098d1ff692e813a62f15 (diff) | |
download | packages-20ed702c35ad049d359ddb5a0407269c619ae884.tar.gz packages-20ed702c35ad049d359ddb5a0407269c619ae884.tar.bz2 packages-20ed702c35ad049d359ddb5a0407269c619ae884.tar.xz packages-20ed702c35ad049d359ddb5a0407269c619ae884.zip |
Merge branch 'bump.aerdan.20190127' into 'master'
Bump a bunch of software, holy crap
See merge request !155
Diffstat (limited to 'user/libfm-qt/libfm-qt-0.11.2-const-fixes.patch')
-rw-r--r-- | user/libfm-qt/libfm-qt-0.11.2-const-fixes.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/user/libfm-qt/libfm-qt-0.11.2-const-fixes.patch b/user/libfm-qt/libfm-qt-0.11.2-const-fixes.patch deleted file mode 100644 index f9732fce2..000000000 --- a/user/libfm-qt/libfm-qt-0.11.2-const-fixes.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- libfm-qt-0.11.2/src/folderview.cpp.old 2016-12-21 11:44:23.000000000 -0600 -+++ libfm-qt-0.11.2/src/folderview.cpp 2017-10-12 19:33:06.121769699 -0500 -@@ -727,7 +727,7 @@ - if(!selIndexes.isEmpty()) { - PathList paths; - QModelIndexList::const_iterator it; -- for(it = selIndexes.begin(); it != selIndexes.end(); ++it) { -+ for(it = selIndexes.constBegin(); it != selIndexes.constEnd(); ++it) { - FmFileInfo* file = model_->fileInfoFromIndex(*it); - paths.pushTail(fm_file_info_get_path(file)); - } ---- libfm-qt-0.11.2/src/utilities.cpp.old 2016-12-21 11:44:23.000000000 -0600 -+++ libfm-qt-0.11.2/src/utilities.cpp 2017-10-12 19:39:07.683967576 -0500 -@@ -40,7 +40,7 @@ - QList<QUrl>::const_iterator it; - FmPathList* pathList = fm_path_list_new(); - -- for(it = urls.begin(); it != urls.end(); ++it) { -+ for(it = urls.constBegin(); it != urls.constEnd(); ++it) { - QUrl url = *it; - FmPath* path = fm_path_new_for_uri(url.toString().toUtf8()); - fm_path_list_push_tail(pathList, path); |