Changeset 7425 for sandbox_qt
- Timestamp:
- Sep 12, 2010, 3:12:55 PM (14 years ago)
- Location:
- sandbox_qt
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
sandbox_qt/cmake/LibraryConfig.cmake
r7421 r7425 88 88 # Performs the search and sets the variables # 89 89 90 FIND_PACKAGE(Q T4 COMPONENTS QtCore QtGui REQUIRED)90 FIND_PACKAGE(Qt4 COMPONENTS QtCore QtGui REQUIRED) 91 91 92 92 -
sandbox_qt/src/libraries/core/CMakeLists.txt
r7424 r7425 19 19 20 20 SET_SOURCE_FILES(CORE_SRC_FILES 21 Command lineParser.cc21 CommandLineParser.cc 22 22 Core.cc 23 23 PathConfig.cc -
sandbox_qt/src/libraries/core/Core.cc
r7424 r7425 37 37 38 38 #include <cassert> 39 #include <cstdlib> 39 40 #include <ctime> 40 41 #include <fstream> … … 107 108 /** 108 109 @brief 109 All destruction code is handled by QScopedPointers110 All destruction code is handled by std::auto_ptr 110 111 */ 111 112 Core::~Core() -
sandbox_qt/src/libraries/core/Core.h
r7424 r7425 44 44 #include "CorePrereqs.h" 45 45 46 #include <memory> 46 47 #include <string> 47 #include <QScopedPointer>48 48 #include <loki/ScopeGuard.h> 49 49 … … 86 86 // MANAGED SINGLETONS/OBJECTS 87 87 // Mind the order for the destruction! 88 QScopedPointer<PathConfig>pathConfig_;88 std::auto_ptr<PathConfig> pathConfig_; 89 89 90 90 int softDebugLevelLogFile_; //!< The debug level for the log file (belongs to OutputHandler) -
sandbox_qt/src/libraries/util/Math.h
r7421 r7425 45 45 #include <string> 46 46 #include <cmath> 47 #include <cstdlib> 47 48 48 49 // Certain headers might define unwanted macros... -
sandbox_qt/src/libraries/util/StringUtils.cc
r7421 r7425 532 532 QDir operator/(const QDir& lhs, const QDir& rhs) 533 533 { 534 return (QDir(lhs) /= rhs);534 return QDir(lhs.path() + QDir::separator() + rhs.path()); 535 535 } 536 536 -
sandbox_qt/src/orxonox/Main.cc
r7424 r7425 40 40 41 41 #include "util/Debug.h" 42 #include "core/Command lineParser.h"42 #include "core/CommandLineParser.h" 43 43 #include "core/Core.h" 44 44 #include "Main.h"
Note: See TracChangeset
for help on using the changeset viewer.