summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2015-08-14 22:06:39 +1000
committerTim Mayberry <mojofunk@gmail.com>2017-04-16 14:02:03 +1000
commitf1a4767ac5044a5cec15cfacf57e2ac4bba26658 (patch)
tree1a3da2ea70b6a8d358fbb4fe412cd02dad860df6 /libs/pbd/pbd
parent4d9690930a29b63a5a9b392847b280d6c770aa12 (diff)
Fix indentation and make comment style consistent in PBD::PropertyList header
Diffstat (limited to 'libs/pbd/pbd')
-rw-r--r--libs/pbd/pbd/property_list.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/libs/pbd/pbd/property_list.h b/libs/pbd/pbd/property_list.h
index 9373d2c281..7bc3752d4e 100644
--- a/libs/pbd/pbd/property_list.h
+++ b/libs/pbd/pbd/property_list.h
@@ -38,18 +38,18 @@ public:
virtual ~PropertyList();
- void get_changes_as_xml (XMLNode *);
+ void get_changes_as_xml (XMLNode*);
void invert ();
- /** Add a property (of some kind) to the list. Used when
- constructing PropertyLists that describe a change/operation.
- */
- bool add (PropertyBase* prop);
+ /* Add a property (of some kind) to the list. Used when
+ * constructing PropertyLists that describe a change/operation.
+ */
+ bool add (PropertyBase* prop);
/* Code that is constructing a property list for use
* in setting the state of an object uses this.
- *
- * Defined below, once we have Property<T>
+ *
+ * Defined below, once we have Property<T>
*/
template<typename T, typename V> bool add (PropertyDescriptor<T> pid, const V& v);
@@ -57,10 +57,10 @@ protected:
bool _property_owner;
};
-/** A variant of PropertyList that does not delete its
- * property list in its destructor. Objects with their
- * own Properties store them in an OwnedPropertyList
- * to avoid having them deleted at the wrong time.
+/* A variant of PropertyList that does not delete its
+ * property list in its destructor. Objects with their
+ * own Properties store them in an OwnedPropertyList
+ * to avoid having them deleted at the wrong time.
*/
class LIBPBD_API OwnedPropertyList : public PropertyList
{
@@ -69,8 +69,8 @@ public:
/* Classes that own property lists use this to add their
* property members to their plists. Note that it takes
- * a reference argument rather than a pointer like
- * one of the add() methods in PropertyList.
+ * a reference argument rather than a pointer like
+ * one of the add() methods in PropertyList.
*/
bool add (PropertyBase& p);
};