Skip to content

Commit

Permalink
Sketcher: rename freeGCS to PlaneGCS
Browse files Browse the repository at this point in the history
Because logari81 asked for it.
  • Loading branch information
DeepSOIC committed Dec 18, 2014
1 parent afb8784 commit f775acd
Show file tree
Hide file tree
Showing 13 changed files with 2,400 additions and 2,400 deletions.
30 changes: 15 additions & 15 deletions src/Mod/Sketcher/App/CMakeLists.txt
Expand Up @@ -68,21 +68,21 @@ SET(Python_SRCS
SOURCE_GROUP("Python" FILES ${Python_SRCS})


SET(FreeGCS_SRCS
freegcs/qp_eq.h
freegcs/GCS.cpp
freegcs/GCS.h
freegcs/Util.h
freegcs/Geo.cpp
freegcs/Geo.h
freegcs/Constraints.cpp
freegcs/Constraints.h
freegcs/SubSystem.cpp
freegcs/SubSystem.h
freegcs/qp_eq.cpp
freegcs/qp_eq.h
SET(PlaneGCS_SRCS
planegcs/qp_eq.h
planegcs/GCS.cpp
planegcs/GCS.h
planegcs/Util.h
planegcs/Geo.cpp
planegcs/Geo.h
planegcs/Constraints.cpp
planegcs/Constraints.h
planegcs/SubSystem.cpp
planegcs/SubSystem.h
planegcs/qp_eq.cpp
planegcs/qp_eq.h
)
SOURCE_GROUP("FreeGCS" FILES ${FreeGCS_SRCS})
SOURCE_GROUP("PlaneGCS" FILES ${PlaneGCS_SRCS})

SET(SketchModule_SRCS
AppSketcher.cpp
Expand All @@ -94,7 +94,7 @@ SOURCE_GROUP("Module" FILES ${SketchModule_SRCS})

SET(Sketcher_SRCS
${Features_SRCS}
${FreeGCS_SRCS}
${PlaneGCS_SRCS}
${SketchModule_SRCS}
${Python_SRCS}
${Properties_SRCS}
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Sketcher/App/Sketch.h
Expand Up @@ -29,7 +29,7 @@
#include <Mod/Part/App/TopoShape.h>
#include "Constraint.h"

#include "freegcs/GCS.h"
#include "planegcs/GCS.h"

#include <Base/Persistence.h>

Expand Down
Expand Up @@ -20,8 +20,8 @@
* *
***************************************************************************/

#ifndef FREEGCS_CONSTRAINTS_H
#define FREEGCS_CONSTRAINTS_H
#ifndef PLANEGCS_CONSTRAINTS_H
#define PLANEGCS_CONSTRAINTS_H

#include "Geo.h"
#include "Util.h"
Expand Down Expand Up @@ -468,4 +468,4 @@ namespace GCS

} //namespace GCS

#endif // FREEGCS_CONSTRAINTS_H
#endif // PLANEGCS_CONSTRAINTS_H

0 comments on commit f775acd

Please sign in to comment.