diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-08 20:31:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-08 20:32:40 +0300 |
commit | 6315230e137d62bd0950192e111d6f06843bceea (patch) | |
tree | 946622767d07e5d553a8fa4ac983ee1809ef1950 /src/gui/widgets | |
parent | 18561ddfcb74fe0e079b38213c4bee138ed440f3 (diff) | |
download | mv-6315230e137d62bd0950192e111d6f06843bceea.tar.gz mv-6315230e137d62bd0950192e111d6f06843bceea.tar.bz2 mv-6315230e137d62bd0950192e111d6f06843bceea.tar.xz mv-6315230e137d62bd0950192e111d6f06843bceea.zip |
Fix some include files paths.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/channeltab.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/inttextfield.h | 2 | ||||
-rw-r--r-- | src/gui/widgets/passwordfield.h | 2 | ||||
-rw-r--r-- | src/gui/widgets/progressindicator.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/table.h | 2 | ||||
-rw-r--r-- | src/gui/widgets/whispertab.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/channeltab.cpp b/src/gui/widgets/channeltab.cpp index 625a9b589..df2df2790 100644 --- a/src/gui/widgets/channeltab.cpp +++ b/src/gui/widgets/channeltab.cpp @@ -20,7 +20,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "channeltab.h" +#include "gui/widgets/channeltab.h" #include "channel.h" diff --git a/src/gui/widgets/inttextfield.h b/src/gui/widgets/inttextfield.h index 651c3659e..b36b088a6 100644 --- a/src/gui/widgets/inttextfield.h +++ b/src/gui/widgets/inttextfield.h @@ -23,7 +23,7 @@ #ifndef INTTEXTFIELD_H #define INTTEXTFIELD_H -#include "textfield.h" +#include "gui/widgets/textfield.h" /** * TextBox which only accepts numbers as input. diff --git a/src/gui/widgets/passwordfield.h b/src/gui/widgets/passwordfield.h index b1ff39777..5ba08094d 100644 --- a/src/gui/widgets/passwordfield.h +++ b/src/gui/widgets/passwordfield.h @@ -23,7 +23,7 @@ #ifndef PASSWORDFIELD_H #define PASSWORDFIELD_H -#include "textfield.h" +#include "gui/widgets/textfield.h" /** * A password field. diff --git a/src/gui/widgets/progressindicator.cpp b/src/gui/widgets/progressindicator.cpp index af48d0649..9ca6fe3b8 100644 --- a/src/gui/widgets/progressindicator.cpp +++ b/src/gui/widgets/progressindicator.cpp @@ -19,7 +19,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "progressindicator.h" +#include "gui/widgets/progressindicator.h" #include "graphics.h" #include "simpleanimation.h" diff --git a/src/gui/widgets/table.h b/src/gui/widgets/table.h index f7473c535..48075d53a 100644 --- a/src/gui/widgets/table.h +++ b/src/gui/widgets/table.h @@ -23,7 +23,7 @@ #ifndef TABLE_H #define TABLE_H -#include "tablemodel.h" +#include "gui/widgets/tablemodel.h" #include <guichan/keylistener.hpp> #include <guichan/mouselistener.hpp> diff --git a/src/gui/widgets/whispertab.cpp b/src/gui/widgets/whispertab.cpp index 1a7a73b1a..0cfd41bcb 100644 --- a/src/gui/widgets/whispertab.cpp +++ b/src/gui/widgets/whispertab.cpp @@ -20,7 +20,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "whispertab.h" +#include "gui/widgets/whispertab.h" #include "chatlog.h" #include "commandhandler.h" |