소스 검색

Temporary fix of return value

Ivo Wolf 13 년 전
부모
커밋
8de137c5f4
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      Libs/CommandLineModules/Core/ctkCmdLineModuleInstance.cpp
  2. 1 1
      Libs/CommandLineModules/Core/ctkCmdLineModuleInstance.h

+ 1 - 1
Libs/CommandLineModules/Core/ctkCmdLineModuleInstance.cpp

@@ -148,7 +148,7 @@ QStringList ctkCmdLineModuleInstance::commandLineArguments() const
 
 struct ctkCmdLineModuleFuture {};
 
-ctkCmdLineModuleFuture ctkCmdLineModuleInstance::run() const
+void ctkCmdLineModuleInstance::run() const
 {
 //  // TODO: manage memory
   QStringList args = commandLineArguments();

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

@@ -59,7 +59,7 @@ public:
 
   QStringList commandLineArguments() const;
 
-  ctkCmdLineModuleFuture run() const;
+  void run() const;
 
   Q_SIGNAL void valueChanged(const QString& parameter, const QVariant& value);