Browse Source

Rename CTK_CONSTRUCTOR_*_CXX macro into CTK_CONSTRUCTOR_*_CPP

Jean-Christophe Fillion-Robin 14 years ago
parent
commit
ddc679e911
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Libs/Core/ctkPimpl.h

+ 2 - 2
Libs/Core/ctkPimpl.h

@@ -58,7 +58,7 @@ macro.
  *
  * Also make sure the Pimpl is initalized
  */
-#define CTK_CONSTRUCTOR_NO_ARG_CXX(PUB)  \
+#define CTK_CONSTRUCTOR_NO_ARG_CPP(PUB)  \
   PUB::PUB(): d_ptr(new PUB##Private)    \
     {                                    \
     }
@@ -68,7 +68,7 @@ macro.
  *
  * Also make sure the Pimpl is initalized
  */
-#define CTK_CONSTRUCTOR_1_ARG_CXX(PUB, _ARG1)   \
+#define CTK_CONSTRUCTOR_1_ARG_CPP(PUB, _ARG1)   \
   PUB::PUB(_ARG1 _parent)                       \
     : Superclass( _parent )                     \
     , d_ptr(new PUB##Private)                   \