diff options
author | Ken Moore <ken@pcbsd.org> | 2014-12-30 11:20:57 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-12-30 11:20:57 -0500 |
commit | 3cee91a627ecced62f7eefdc38850ea5499f761c (patch) | |
tree | 93f59249f318a34ad5d9789bac1d155596eb7ff5 /lumina-fm/MainUI.h | |
parent | Commit some more XLib->XCB conversions (everything for the task manager), and... (diff) | |
download | lumina-3cee91a627ecced62f7eefdc38850ea5499f761c.tar.gz lumina-3cee91a627ecced62f7eefdc38850ea5499f761c.tar.bz2 lumina-3cee91a627ecced62f7eefdc38850ea5499f761c.zip |
Clean up how translations are loaded for all the Lumina utilities, and also apply the relative path fixes to all LSingleApplication's forwarded inputs.
Diffstat (limited to 'lumina-fm/MainUI.h')
-rw-r--r-- | lumina-fm/MainUI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-fm/MainUI.h b/lumina-fm/MainUI.h index 1cc26830..7efc9faa 100644 --- a/lumina-fm/MainUI.h +++ b/lumina-fm/MainUI.h @@ -116,10 +116,10 @@ private: QFileInfoList getSelectedItems(); private slots: - void slotSingleInstance(const QString &in){ + void slotSingleInstance(QStringList in){ this->show(); this->raise(); - this->OpenDirs(in.split("\n")); + this->OpenDirs(in); } //General button check functions (started in a seperate thread!) |