D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-04-22 Thread Méven Car
This revision was automatically updated to reflect the committed changes. Closed by commit R119:20f451125ce7: KCM/GlobalShortut: convert FOREACH and old signal syntax (authored by meven). REPOSITORY R119 Plasma Desktop CHANGES SINCE LAST UPDATE

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-04-20 Thread Méven Car
meven updated this revision to Diff 80616. meven added a comment. Fix for loop REPOSITORY R119 Plasma Desktop CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D28282?vs=80614=80616 BRANCH arcpatch-D28282 REVISION DETAIL https://phabricator.kde.org/D28282 AFFECTED FILES

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-04-20 Thread Méven Car
meven updated this revision to Diff 80614. meven added a comment. Rebasing REPOSITORY R119 Plasma Desktop CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D28282?vs=78913=80614 BRANCH arcpatch-D28282 REVISION DETAIL https://phabricator.kde.org/D28282 AFFECTED FILES

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-03-30 Thread Méven Car
meven updated this revision to Diff 78913. meven marked 5 inline comments as done. meven added a comment. Adress review (formatting) and fix a couple of indentation issues REPOSITORY R119 Plasma Desktop CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D28282?vs=78522=78913 BRANCH

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-03-30 Thread Benjamin Port
bport added a comment. Some coding style nitpicking INLINE COMMENTS > export_scheme_dialog.cpp:46 > int item=0; > -Q_FOREACH(QString component, mComponents) > +for (const QString : qAsConst(mComponents)) > { { on same line > export_scheme_dialog.cpp:74 > +const auto

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-03-26 Thread Méven Car
meven updated this revision to Diff 78522. meven marked 4 inline comments as done. meven added a comment. Review comments, code formating more const REPOSITORY R119 Plasma Desktop CHANGES SINCE LAST UPDATE https://phabricator.kde.org/D28282?vs=78457=78522 BRANCH shortcuts REVISION

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-03-26 Thread Ahmad Samir
ahmadsamir added inline comments. INLINE COMMENTS > export_scheme_dialog.cpp:46 > int item=0; > -Q_FOREACH(QString component, mComponents) > +for(QString component : qAsConst(mComponents)) > { const QString & > export_scheme_dialog.cpp:74 > +const auto buttons =

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-03-25 Thread David Edmundson
davidedmundson added inline comments. INLINE COMMENTS > globalshortcuts.cpp:42 > editor = new KGlobalShortcutsEditor(this, > KShortcutsEditor::GlobalAction); > -connect(editor, SIGNAL(changed(bool)), this, SIGNAL(changed(bool))); > +connect(editor, ::changed, this, >

D28282: KCM/GlobalShortut: convert FOREACH and old signal syntax

2020-03-25 Thread Méven Car
meven created this revision. meven added reviewers: ervin, bport, crossi, hchain, Plasma. Herald added a project: Plasma. Herald added a subscriber: plasma-devel. meven requested review of this revision. TEST PLAN Builds, changed a shortcut and back again REPOSITORY R119 Plasma Desktop