Changeset 178 in pacpusframework
- Timestamp:
- Oct 11, 2013, 3:36:46 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cmake/PacpusDependencies.cmake
r175 r178 15 15 set(PACPUS_DEPENDENCIES_LIB "") 16 16 17 # FIXME: first find_package(Qt5Widgets QUIET), then Qt4 17 18 set(PACPUS_USE_QT5 FALSE CACHE BOOL "Whether to use Qt5") 18 19 if(NOT PACPUS_USE_QT5) 19 find_package(Qt4 )20 find_package(Qt4 QUIET) 20 21 if(NOT QT4_FOUND) 21 22 message(WARNING "Qt4 not found try to find Qt5") … … 112 113 log 113 114 log_setup 115 program_options 114 116 ) 115 117 include_directories(${Boost_INCLUDE_DIRS}) -
trunk/src/PacpusLib/ComponentBase.cpp
r177 r178 26 26 : m_componentName(componentName) 27 27 , m_isActive(false) 28 , m _isRecording(true)28 , mIsRecording(true) 29 29 , m_manager(NULL) 30 30 , m_ui(NULL)
Note:
See TracChangeset
for help on using the changeset viewer.