summary refs log tree commit diff
path: root/include/QuickSwitcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/QuickSwitcher.h')
-rw-r--r--include/QuickSwitcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/QuickSwitcher.h b/include/QuickSwitcher.h

index 5cbd0f1f..115161ab 100644 --- a/include/QuickSwitcher.h +++ b/include/QuickSwitcher.h
@@ -47,7 +47,7 @@ class QuickSwitcher : public QFrame public: explicit QuickSwitcher(QWidget *parent = nullptr); - void setRoomList(const QMap<QString, QString> &rooms); + void setRoomList(const std::map<QString, QString> &rooms); signals: void closing(); @@ -65,5 +65,5 @@ private: RoomSearchInput *roomSearch_; QCompleter *completer_; - QMap<QString, QString> rooms_; + std::map<QString, QString> rooms_; };