aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatti Airas <matti.p.airas@nokia.com>2010-03-17 16:20:03 -0300
committerMatti Airas <matti.p.airas@nokia.com>2010-03-17 16:20:03 -0300
commit5d89be16960be4aec9ba8c8709e3902794521ce5 (patch)
treef0359a06dbc2083ec927bffeba1beeaa0c323260 /tests
parentf4db0c74e0f267c102fff6eb47ecc3eae628a637 (diff)
fixed a typo in the test class name
Diffstat (limited to 'tests')
-rw-r--r--tests/libsample/derived.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libsample/derived.cpp b/tests/libsample/derived.cpp
index 39d9f30e6..1a19fe137 100644
--- a/tests/libsample/derived.cpp
+++ b/tests/libsample/derived.cpp
@@ -98,14 +98,14 @@ Derived::otherOverloaded(int a, double b)
return OtherOverloadedFunc_id;
}
-struct SecrectClass : public Abstract {
+struct SecretClass : public Abstract {
virtual void pureVirtual() {}
virtual PrintFormat returnAnEnum() { return Short; }
};
Abstract* Derived::triggerImpossibleTypeDiscovery()
{
- return new SecrectClass;
+ return new SecretClass;
}
struct AnotherSecretClass : public Derived {