Changeset 7489 in orxonox.OLD for branches/qt_gui
- Timestamp:
- May 3, 2006, 12:04:12 AM (19 years ago)
- Location:
- branches/qt_gui
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/configure.ac
r7442 r7489 671 671 src/lib/parser/ini_parser/Makefile 672 672 src/lib/parser/cmdline_parser/Makefile 673 673 src/lib/parser/preferences/Makefile 674 674 src/util/Makefile 675 675 src/world_entities/Makefile -
branches/qt_gui/src/defs/debug.h
r7374 r7489 28 28 #include "confincl.h" 29 29 #ifndef NO_SHELL 30 #include "shell_buffer.h"30 #include "lib/shell/shell_buffer.h" 31 31 #endif /* NO_SHELL */ 32 32 -
branches/qt_gui/src/lib/gui/gui_saveable.h
r7480 r7489 8 8 9 9 #include "base_object.h" 10 #include " multi_type.h"10 #include "lib/util/multi_type.h" 11 11 #include <vector> 12 12 -
branches/qt_gui/src/lib/gui/qt_gui/Makefile.am
r7487 r7489 1 1 MAINSRCDIR=../../.. 2 AM_CXXFLAGS=-I$(MAINSRCDIR)/lib/lang 2 AM_CXXFLAGS=-I$(MAINSRCDIR)/ 3 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang 3 4 AM_CXXFLAGS+=-I$(MAINSRCDIR)/defs 4 5 -
branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h
r7479 r7489 8 8 9 9 #include "../gui.h" 10 #include " gui_element.h"10 #include "../gui_element.h" 11 11 #include <qapplication.h> 12 12 #include <qmainwindow.h> … … 32 32 private: 33 33 QMainWindow* mainWindow; 34 std::list< GuiElement*>elements; //!< A List of Elements within the QTGui34 std::list<Element*> elements; //!< A List of Elements within the QTGui 35 35 }; 36 36 } -
branches/qt_gui/src/lib/shell/shell_buffer.h
r7374 r7489 10 10 #include <stdarg.h> 11 11 #include <list> 12 #include " threading.h"12 #include "lib/util/threading.h" 13 13 14 14 #define SHELL_BUFFER_SIZE 16384 //!< The Size of the input-buffers (should be large enough to carry any kind of input)
Note: See TracChangeset
for help on using the changeset viewer.