From 5f00fe905c8b5f9802a66e1cfd0f21873b769147 Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Thu, 16 Feb 2017 22:32:22 -0800 Subject: Qt: Remove unnecessary std::string usage --- src/citra_qt/main.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/citra_qt/main.h') diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index 102fd151d..7ae972937 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -79,8 +79,8 @@ private: * @returns Whether the system was properly initialized. */ bool InitializeSystem(u32 system_mode); - bool LoadROM(const std::string& filename); - void BootGame(const std::string& filename); + bool LoadROM(const QString& filename); + void BootGame(const QString& filename); void ShutdownGame(); /** @@ -94,7 +94,7 @@ private: * * @param filename the filename to store */ - void StoreRecentFile(const std::string& filename); + void StoreRecentFile(const QString& filename); /** * Updates the recent files menu. -- cgit v1.2.3 From c7c0219f8adf48dea66fd4785f4f9cdc1d229cec Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Thu, 16 Feb 2017 22:33:15 -0800 Subject: Qt: Remove orpahned function declaration --- src/citra_qt/main.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/citra_qt/main.h') diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index 7ae972937..debc35c92 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -73,12 +73,6 @@ private: void ConnectWidgetEvents(); - /** - * Initializes the emulation system. - * @param system_mode The system mode with which to intialize the kernel. - * @returns Whether the system was properly initialized. - */ - bool InitializeSystem(u32 system_mode); bool LoadROM(const QString& filename); void BootGame(const QString& filename); void ShutdownGame(); -- cgit v1.2.3