diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-12 12:54:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-12 12:54:22 +0300 |
commit | bd7a4a6eb33606a4519cc022c9ff524238a31111 (patch) | |
tree | 6aaafb240b7e1e715694a59abdb7756b355c89c3 /src/gui | |
parent | 4bb46638ab42eed2d13efdb2c3d1ed174bc28097 (diff) | |
download | plus-bd7a4a6eb33606a4519cc022c9ff524238a31111.tar.gz plus-bd7a4a6eb33606a4519cc022c9ff524238a31111.tar.bz2 plus-bd7a4a6eb33606a4519cc022c9ff524238a31111.tar.xz plus-bd7a4a6eb33606a4519cc022c9ff524238a31111.zip |
Move WhisperTab into chat subdir.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/popups/popupmenu.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/whispertab.cpp (renamed from src/gui/widgets/tabs/whispertab.cpp) | 2 | ||||
-rw-r--r-- | src/gui/widgets/tabs/chat/whispertab.h (renamed from src/gui/widgets/tabs/whispertab.h) | 6 | ||||
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index fd7b2df50..57dd21fca 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -62,9 +62,9 @@ #include "gui/widgets/progressbar.h" #include "gui/widgets/scrollarea.h" #include "gui/widgets/textfield.h" -#include "gui/widgets/tabs/whispertab.h" #include "gui/widgets/tabs/chat/chattab.h" +#include "gui/widgets/tabs/chat/whispertab.h" #include "net/adminhandler.h" #include "net/beinghandler.h" diff --git a/src/gui/widgets/tabs/whispertab.cpp b/src/gui/widgets/tabs/chat/whispertab.cpp index 03b90ca18..f7b49dee8 100644 --- a/src/gui/widgets/tabs/whispertab.cpp +++ b/src/gui/widgets/tabs/chat/whispertab.cpp @@ -20,7 +20,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "gui/widgets/tabs/whispertab.h" +#include "gui/widgets/tabs/chat/whispertab.h" #include "chatlogger.h" diff --git a/src/gui/widgets/tabs/whispertab.h b/src/gui/widgets/tabs/chat/whispertab.h index 57c215dd9..5817ff8d6 100644 --- a/src/gui/widgets/tabs/whispertab.h +++ b/src/gui/widgets/tabs/chat/whispertab.h @@ -20,8 +20,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef GUI_WIDGETS_TABS_WHISPERTAB_H -#define GUI_WIDGETS_TABS_WHISPERTAB_H +#ifndef GUI_WIDGETS_TABS_CHAT_WHISPERTAB_H +#define GUI_WIDGETS_TABS_CHAT_WHISPERTAB_H #include "gui/widgets/tabs/chat/chattab.h" #include "gui/widgets/tabs/chat/chattabtype.h" @@ -71,4 +71,4 @@ class WhisperTab final : public ChatTab std::string mNick; }; -#endif // GUI_WIDGETS_TABS_WHISPERTAB_H +#endif // GUI_WIDGETS_TABS_CHAT_WHISPERTAB_H diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index a990d67df..a6a96be5b 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -62,7 +62,7 @@ #include "gui/widgets/tabs/chat/langtab.h" #include "gui/widgets/tabs/chat/tradetab.h" -#include "gui/widgets/tabs/whispertab.h" +#include "gui/widgets/tabs/chat/whispertab.h" #include "render/opengldebug.h" |