- Timestamp:
- Sep 23, 2015, 9:35:59 PM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/FileLib/test/CMakeLists.txt
r314 r349 44 44 ) 45 45 46 if(WIN32) 47 list(APPEND LIBS 48 optimized FileLib debug FileLib_d 49 optimized PacpusLib debug PacpusLib_d 50 ) 51 endif() 46 list(APPEND LIBS 47 optimized FileLib debug FileLib_d 48 optimized PacpusLib debug PacpusLib_d 49 ) 52 50 53 51 # LINK -
trunk/src/PacpusLib/ColorSeverityFormatter.hpp
r303 r349 303 303 } 304 304 305 BOOST_DELETED_FUNCTION(FormatSeverityWithColorsTerminal()) 305 //BOOST_DELETED_FUNCTION(FormatSeverityWithColorsTerminal()) 306 FormatSeverityWithColorsTerminal() = delete; 306 307 }; 307 308 -
trunk/src/PacpusLib/ComponentBase.cpp
r312 r349 207 207 } 208 208 209 // FIXME: this should be const. 210 ComponentBase::COMPONENT_STATE ComponentBase::state() 211 { 212 return getState(); 213 } 214 215 209 216 ComponentBase::COMPONENT_CONFIGURATION ComponentBase::configurationState() const 210 217 { … … 225 232 { 226 233 return m_componentName; 234 } 235 236 QString ComponentBase::name() const 237 { 238 return getName(); 227 239 } 228 240
Note:
See TracChangeset
for help on using the changeset viewer.