Changeset 7489 in orxonox.OLD for branches/qt_gui/src/lib
- Timestamp:
- May 3, 2006, 12:04:12 AM (19 years ago)
- Location:
- branches/qt_gui/src/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
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.