diff -r a496e72af069 -r 83426c5fa732 src/primitives.h --- a/src/primitives.h Mon Aug 04 13:43:54 2014 +0300 +++ b/src/primitives.h Wed Aug 06 16:18:24 2014 +0300 @@ -91,8 +91,8 @@ extern QList g_PrimitiveCategories; -void loadPrimitives(); -PrimitiveScanner* getActivePrimitiveScanner(); +void LoadPrimitives(); +PrimitiveScanner* ActivePrimitiveScanner(); enum PrimitiveType { @@ -117,11 +117,11 @@ void hiResToggled (bool on); }; -void makeCircle (int segs, int divs, double radius, QList& lines); -LDDocumentPtr generatePrimitive (PrimitiveType type, int segs, int divs, int num); +void MakeCircle (int segs, int divs, double radius, QList& lines); +LDDocumentPtr GeneratePrimitive (PrimitiveType type, int segs, int divs, int num); // Gets a primitive by the given specs. If the primitive cannot be found, it will // be automatically generated. -LDDocumentPtr getPrimitive (PrimitiveType type, int segs, int divs, int num); +LDDocumentPtr GetPrimitive (PrimitiveType type, int segs, int divs, int num); -QString radialFileName (PrimitiveType type, int segs, int divs, int num); +QString MakeRadialFileName (PrimitiveType type, int segs, int divs, int num);