summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/csvgrid.cxx
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2002-08-06 15:12:21 +0000
committerDaniel Rentz <dr@openoffice.org>2002-08-06 15:12:21 +0000
commit0208aa4a9d34e69fb6e11cddd0e1142caa7e3b3f (patch)
tree864a9eda0a06720c1f5a319a445dc50cf7becea9 /sc/source/ui/dbgui/csvgrid.cxx
parent770d3952b997f7e3e177895e61e45a3b9646516a (diff)
#100000# missing void
Diffstat (limited to 'sc/source/ui/dbgui/csvgrid.cxx')
-rw-r--r--sc/source/ui/dbgui/csvgrid.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/dbgui/csvgrid.cxx b/sc/source/ui/dbgui/csvgrid.cxx
index d7f1fce46e1c..6ef8fc268ad1 100644
--- a/sc/source/ui/dbgui/csvgrid.cxx
+++ b/sc/source/ui/dbgui/csvgrid.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: csvgrid.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: dr $ $Date: 2002-08-01 12:48:31 $
+ * last change: $Author: dr $ $Date: 2002-08-06 16:12:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -112,12 +112,12 @@
struct Func_SetDefault
{
- inline operator()( ScCsvColState& rState ) { rState.mnType = CSV_TYPE_DEFAULT; }
+ inline void operator()( ScCsvColState& rState ) { rState.mnType = CSV_TYPE_DEFAULT; }
};
struct Func_Deselect
{
- inline operator()( ScCsvColState& rState ) { rState.Select( false ); }
+ inline void operator()( ScCsvColState& rState ) { rState.Select( false ); }
};