From 500e1f9892dd41419663e9f72cf47bab5b2aca0b Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Mon, 23 Sep 2024 00:33:33 -0500 Subject: Saving work. --- src/main_window.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/main_window.hpp') diff --git a/src/main_window.hpp b/src/main_window.hpp index bc23b01..d114e31 100644 --- a/src/main_window.hpp +++ b/src/main_window.hpp @@ -2,20 +2,20 @@ #define MAIN_WINDOW_HPP #include "archive.hpp" -#include "getsuyomi.hpp" +#include "bookmouse.hpp" #include -namespace getsuyomi { +namespace bookmouse { -constexpr const char* AppName = "GetsuYomi"; +constexpr const char* AppName = "Bookmouse"; constexpr const char* AppVersionString = "1.0.0"; -class GetsuyomiApp : public QMainWindow { +class BookmouseApp : public QMainWindow { Q_OBJECT public: - GetsuyomiApp(); + BookmouseApp(); private: void setup(); @@ -23,7 +23,7 @@ class GetsuyomiApp : public QMainWindow { void createMenus(); void createToolBar(); - Getsuyomi* m_getsuyomi; + Bookmouse* m_bookmouse; QAction* m_openFile; QAction* m_openDirectory; @@ -43,6 +43,6 @@ class GetsuyomiApp : public QMainWindow { void back(); }; -} // namespace getsuyomi +} // namespace bookmouse #endif -- cgit v1.2.3