summaryrefslogtreecommitdiff
path: root/documentation/classes-and-objects.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 09:50:10 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-13 09:50:10 +0100
commit9df186180f25313d2182ef7a0bb807875888892c (patch)
tree723d667aef52ef4e57ea252bb780145f651490aa /documentation/classes-and-objects.html
parent01fa31d24d6669ee30ccb897a0a7f438bcbe59f0 (diff)
added serializable class (but not yet implemented it)
Diffstat (limited to 'documentation/classes-and-objects.html')
-rw-r--r--documentation/classes-and-objects.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/classes-and-objects.html b/documentation/classes-and-objects.html
index 6bb804d..5b7c063 100644
--- a/documentation/classes-and-objects.html
+++ b/documentation/classes-and-objects.html
@@ -409,10 +409,10 @@ MyClass::static1();
// this will call PrivateClass::staticMethod()
MyClass::static2();
-// this will call regularFunction
+// this will call regularFunction()
MyClass::static3();
-// this will call PrivateClass::staticMethod
+// this will also call PrivateClass::staticMethod()
myFunction();
?&gt;
</code></pre>