diff options
author | Bart Ribbers <bribbers@disroot.org> | 2019-09-16 11:54:09 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-16 11:45:01 -0300 |
commit | 53691f2e5c00a3e1f3e38e2adb3e1c9f2d65fa86 (patch) | |
tree | 2326ddd60308a1056401f8982b1f6a884e43f552 /community/kio/D23670.patch | |
parent | 0e5a564450c7013131e4f292774fbb9b392f1409 (diff) | |
download | aports-53691f2e5c00a3e1f3e38e2adb3e1c9f2d65fa86.tar.bz2 aports-53691f2e5c00a3e1f3e38e2adb3e1c9f2d65fa86.tar.xz |
community/kde-frameworks: upgrade to 5.62.0
Also take over maintainership of community/attica
Diffstat (limited to 'community/kio/D23670.patch')
-rw-r--r-- | community/kio/D23670.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/community/kio/D23670.patch b/community/kio/D23670.patch deleted file mode 100644 index 7eb064e7d0..0000000000 --- a/community/kio/D23670.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff --git a/src/widgets/kpropertiesdialog.cpp b/src/widgets/kpropertiesdialog.cpp ---- a/src/widgets/kpropertiesdialog.cpp -+++ b/src/widgets/kpropertiesdialog.cpp -@@ -1155,15 +1155,15 @@ - if (isLocal) { - KMountPoint::Ptr mp = KMountPoint::currentMountPoints().findByPath(url.toLocalFile()); - -- l = new QLabel(i18n("File System:"), d->m_frame); -- grid->addWidget(l, curRow, 0, Qt::AlignRight); -+ if (mp) { -+ l = new QLabel(i18n("File System:"), d->m_frame); -+ grid->addWidget(l, curRow, 0, Qt::AlignRight); - -- l = new QLabel(d->m_frame); -- grid->addWidget(l, curRow++, 2); -- l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); -- l->setText(mp->mountType()); -+ l = new QLabel(d->m_frame); -+ grid->addWidget(l, curRow++, 2); -+ l->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard); -+ l->setText(mp->mountType()); - -- if (mp) { - l = new QLabel(i18n("Mounted on:"), d->m_frame); - grid->addWidget(l, curRow, 0, Qt::AlignRight); - - |