소스 검색

Reformat code style of ctkAxesWidgetPlugin.cpp

Julien Finet 14 년 전
부모
커밋
297c287bb8
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      Libs/Widgets/Plugins/ctkAxesWidgetPlugin.cpp

+ 5 - 4
Libs/Widgets/Plugins/ctkAxesWidgetPlugin.cpp

@@ -23,15 +23,16 @@
 #include "ctkAxesWidget.h"
 
 //-----------------------------------------------------------------------------
-ctkAxesWidgetPlugin::ctkAxesWidgetPlugin(QObject *_parent) : QObject(_parent)
+ctkAxesWidgetPlugin::ctkAxesWidgetPlugin(QObject* parentObject)
+  : QObject(parentObject)
 {
 }
 
 //-----------------------------------------------------------------------------
-QWidget *ctkAxesWidgetPlugin::createWidget(QWidget *_parent)
+QWidget* ctkAxesWidgetPlugin::createWidget(QWidget* parentWidget)
 {
-  ctkAxesWidget* _widget = new ctkAxesWidget(_parent);
-  return _widget;
+  ctkAxesWidget* newWidget = new ctkAxesWidget(parentWidget);
+  return newWidget;
 }
 
 //-----------------------------------------------------------------------------