- Timestamp:
- Jun 25, 2013, 1:44:25 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/FileLib/CMakeLists.txt
r103 r116 46 46 ${PACPUS_DEPENDENCIES_LIB} 47 47 PacpusLib 48 49 48 ) 50 49 -
trunk/src/FileLib/src/DbiteException.cpp
r91 r116 11 11 12 12 DbiteException::DbiteException(const std::string& what) 13 : mWhat(what)13 : PacpusException(what) 14 14 { 15 15 } … … 18 18 { 19 19 } 20 21 const char* DbiteException::what() const throw()22 {23 return mWhat.c_str();24 } -
trunk/src/PacpusLib/CMakeLists.txt
r101 r116 48 48 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/pacpus.h 49 49 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/PacpusApplication.h 50 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/PacpusException.h 51 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/PacpusLibConfig.h 50 52 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/road_time.h 51 53 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/XmlComponentConfig.h … … 56 58 ./Log.cpp 57 59 ./PacpusApplication.cpp 60 ./PacpusException.cpp 58 61 ./XmlComponentConfig.cpp 59 62 ./XmlConfigFile.cpp -
trunk/src/PacpusLib/ComponentManager.cpp
r91 r116 6 6 /// @version $Id$ 7 7 8 #include <Pacpus/kernel/ComponentFactoryBase.h> 8 9 #include <Pacpus/kernel/ComponentManager.h> 9 10 #include <Pacpus/kernel/ComponentBase.h> -
trunk/src/PacpusLib/XmlComponentConfig.cpp
r91 r116 55 55 int XmlComponentConfig::delProperty(const QString& name) 56 56 { 57 if (!hasProperty(name)) 58 { 59 LOG_WARN("cannot delete compoenent property '" << name << "'" 57 if (!hasProperty(name)) { 58 LOG_WARN("cannot delete component property '" << name << "'" 60 59 << " of component '" << component_.tagName() << "'" 61 60 << ". Component does not contain this property."
Note:
See TracChangeset
for help on using the changeset viewer.