diff options
| author | Emmanuel Pescosta <[email protected]> | 2014-11-10 08:45:38 +0100 |
|---|---|---|
| committer | Emmanuel Pescosta <[email protected]> | 2014-11-10 08:45:38 +0100 |
| commit | d0f0f1f2e2644e3738c03374d062dab9acc61eaf (patch) | |
| tree | ae2d4224b9e1706671926df592c2f4affacfe39c /src/dolphinpart.cpp | |
| parent | 82f19ab47019e9e8670e202ad44720d911ab09cf (diff) | |
make use of initializer lists
Diffstat (limited to 'src/dolphinpart.cpp')
| -rw-r--r-- | src/dolphinpart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp index 1c79a5980..8484b7ef9 100644 --- a/src/dolphinpart.cpp +++ b/src/dolphinpart.cpp @@ -556,7 +556,7 @@ void DolphinPart::slotOpenTerminal() void DolphinPart::slotFindFile() { - KRun::run("kfind", QList<QUrl>() << url(), widget()); + KRun::run("kfind", {url()}, widget()); } void DolphinPart::updateNewMenu() |
