소스 검색

Fixed Visual Studio compiler warnings.

Sascha Zelzer 12 년 전
부모
커밋
f4adf756c9
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      Libs/CommandLineModules/Core/ctkCmdLineModuleFutureInterface.h
  2. 1 1
      Libs/CommandLineModules/Core/ctkCmdLineModuleFutureWatcher.h

+ 1 - 1
Libs/CommandLineModules/Core/ctkCmdLineModuleFutureInterface.h

@@ -79,7 +79,7 @@ public:
 
 private:
 
-  friend class ctkCmdLineModuleFutureWatcherPrivate;
+  friend struct ctkCmdLineModuleFutureWatcherPrivate;
 
   QtConcurrent::ResultStore<ctkCmdLineModuleResult> &resultStore()
   { return static_cast<QtConcurrent::ResultStore<ctkCmdLineModuleResult> &>(resultStoreBase()); }

+ 1 - 1
Libs/CommandLineModules/Core/ctkCmdLineModuleFutureWatcher.h

@@ -72,7 +72,7 @@ Q_SIGNALS:
 
 private:
 
-  friend class ctkCmdLineModuleFutureWatcherPrivate;
+  friend struct ctkCmdLineModuleFutureWatcherPrivate;
 
   QScopedPointer<ctkCmdLineModuleFutureWatcherPrivate> d;