diff options
author | jak1 <jak1@themanaworld.org> | 2024-02-16 14:50:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-02-18 00:31:12 -0300 |
commit | d36cb0eb4b7bba79b2b654c0e5f91f16726bdc68 (patch) | |
tree | d4279a38b763cefd033cfbf4d1ec2ff13c5e5dd2 /src/gui | |
parent | 775392e472933be8d1d76619894efc0671f0c02d (diff) | |
download | mv-d36cb0eb4b7bba79b2b654c0e5f91f16726bdc68.tar.gz mv-d36cb0eb4b7bba79b2b654c0e5f91f16726bdc68.tar.bz2 mv-d36cb0eb4b7bba79b2b654c0e5f91f16726bdc68.tar.xz mv-d36cb0eb4b7bba79b2b654c0e5f91f16726bdc68.zip |
Rename the program from ManaPlus to ManaVerse.jesusalva/renameprog
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/viewport.h | 7 | ||||
-rw-r--r-- | src/gui/windowmanager.cpp | 5 | ||||
-rw-r--r-- | src/gui/windows/updaterwindow.cpp | 2 | ||||
-rw-r--r-- | src/gui/windows/updaterwindow.h | 3 |
4 files changed, 10 insertions, 7 deletions
diff --git a/src/gui/viewport.h b/src/gui/viewport.h index d5782986b..80327a3f1 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -1,6 +1,7 @@ /* * The ManaPlus Client - * Copyright (C) 2011-2019 The ManaPlus Developers + * Copyright (C) 2011-2020 The ManaPlus Developers + * Copyright (C) 2020-2023 The ManaVerse Developers * * This file is part of The ManaPlus Client. * @@ -25,8 +26,8 @@ #include "progs/dyecmd/gui/viewport.h" PROGS_DYECMD_GUI_VIEWPORT_H #else -#include "progs/manaplus/gui/viewport.h" -PROGS_MANAPLUS_GUI_VIEWPORT_H +#include "progs/manaverse/gui/viewport.h" +PROGS_MANAVERSE_GUI_VIEWPORT_H #endif // DYECMD #endif // GUI_VIEWPORT_H diff --git a/src/gui/windowmanager.cpp b/src/gui/windowmanager.cpp index 79e6cb47c..352f06155 100644 --- a/src/gui/windowmanager.cpp +++ b/src/gui/windowmanager.cpp @@ -2,7 +2,8 @@ * The ManaPlus Client * Copyright (C) 2004-2009 The Mana World Development Team * Copyright (C) 2009-2010 The Mana Developers - * Copyright (C) 2011-2019 The ManaPlus Developers + * Copyright (C) 2011-2020 The ManaPlus Developers + * Copyright (C) 2020-2023 The ManaVerse Developers * * This file is part of The ManaPlus Client. * @@ -417,7 +418,7 @@ void WindowManager::newChatMessage() void WindowManager::setIcon() { #if !defined(ANDROID) && !defined(__SWITCH__) - std::string iconFile = branding.getValue("appIcon", "icons/manaplus"); + std::string iconFile = branding.getValue("appIcon", "icons/manaverse"); #ifdef WIN32 iconFile.append(".ico"); #else // WIN32 diff --git a/src/gui/windows/updaterwindow.cpp b/src/gui/windows/updaterwindow.cpp index 948ce5a17..f7bee0684 100644 --- a/src/gui/windows/updaterwindow.cpp +++ b/src/gui/windows/updaterwindow.cpp @@ -1080,7 +1080,7 @@ void UpdaterWindow::loadMods(const std::string &dir, if (file.group.empty()) continue; std::string name = file.name; - if (strStartWith(name, "manaplus_")) + if (strStartWith(name, "manaverse_")) { const std::set<std::string>::const_iterator it = modsList.find(file.group); diff --git a/src/gui/windows/updaterwindow.h b/src/gui/windows/updaterwindow.h index daa80f978..8ba66e08f 100644 --- a/src/gui/windows/updaterwindow.h +++ b/src/gui/windows/updaterwindow.h @@ -2,7 +2,8 @@ * The ManaPlus Client * Copyright (C) 2004-2009 The Mana World Development Team * Copyright (C) 2009-2010 The Mana Developers - * Copyright (C) 2011-2019 The ManaPlus Developers + * Copyright (C) 2011-2020 The ManaPlus Developers + * Copyright (C) 2020-2023 The ManaVerse Developers * * This file is part of The ManaPlus Client. * |