aboutsummaryrefslogtreecommitdiff
path: root/src/function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/function.cpp')
-rw-r--r--src/function.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/function.cpp b/src/function.cpp
index f73f576..c4bf966 100644
--- a/src/function.cpp
+++ b/src/function.cpp
@@ -1,7 +1,7 @@
1#include "function.h" 1#include "function.h"
2 2
3Function::Function() : 3Function::Function() :
4 pContext( NULL ) 4 pContext( NULL )
5{ 5{
6} 6}
7 7
@@ -11,6 +11,6 @@ Function::~Function()
11 11
12void Function::setContext( class Context *p ) 12void Function::setContext( class Context *p )
13{ 13{
14 pContext = p; 14 pContext = p;
15} 15}
16 16