diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
commit | 52be1ef0d126f09ba943c7afcf367e7d9347f2fd (patch) | |
tree | fd4b0dd148751c3c6c1b95296c3b82cb86051b83 /src/functionclose.cpp | |
parent | 795d0737fed40d88a7801b451b7750ba90802345 (diff) | |
download | build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.gz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.bz2 build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.xz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.zip |
tabconv: it's all spaces now.
Diffstat (limited to '')
-rw-r--r-- | src/functionclose.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/functionclose.cpp b/src/functionclose.cpp index d652913..173e224 100644 --- a/src/functionclose.cpp +++ b/src/functionclose.cpp | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | #include <bu/plugger.h> | 4 | #include <bu/plugger.h> |
5 | PluginInterface3( pluginFunctionClose, close, FunctionClose, Function, | 5 | PluginInterface3( pluginFunctionClose, close, FunctionClose, Function, |
6 | "Mike Buland", 0, 1 ); | 6 | "Mike Buland", 0, 1 ); |
7 | 7 | ||
8 | FunctionClose::FunctionClose() | 8 | FunctionClose::FunctionClose() |
9 | { | 9 | { |
@@ -15,12 +15,12 @@ FunctionClose::~FunctionClose() | |||
15 | 15 | ||
16 | Bu::String FunctionClose::getName() const | 16 | Bu::String FunctionClose::getName() const |
17 | { | 17 | { |
18 | return "close"; | 18 | return "close"; |
19 | } | 19 | } |
20 | 20 | ||
21 | Variable FunctionClose::call( Variable &input, VarList ) | 21 | Variable FunctionClose::call( Variable &input, VarList ) |
22 | { | 22 | { |
23 | FileMgr::getInstance().close( (ptrdiff_t)input.getOpaque() ); | 23 | FileMgr::getInstance().close( (ptrdiff_t)input.getOpaque() ); |
24 | return Variable(); | 24 | return Variable(); |
25 | } | 25 | } |
26 | 26 | ||