summaryrefslogtreecommitdiff
path: root/sc/source/ui/docshell/docsh8.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-12-01 16:54:28 +0000
committerRüdiger Timm <rt@openoffice.org>2003-12-01 16:54:28 +0000
commitca23d50a9408ce086b53e8b830c462f7d50b5586 (patch)
tree152a9214d2120d78639fa29e17aaa44a8f4b8759 /sc/source/ui/docshell/docsh8.cxx
parent3931f8791b1b033b1993d30e2254e7698f70d623 (diff)
INTEGRATION: CWS ooo20031110 (1.15.292); FILE MERGED
2003/11/07 11:02:41 waratah 1.15.292.1: #i21906# add sal_Bool where missing on function definitions
Diffstat (limited to 'sc/source/ui/docshell/docsh8.cxx')
-rw-r--r--sc/source/ui/docshell/docsh8.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/docshell/docsh8.cxx b/sc/source/ui/docshell/docsh8.cxx
index fa2bcafb00a6..2a1f26699e04 100644
--- a/sc/source/ui/docshell/docsh8.cxx
+++ b/sc/source/ui/docshell/docsh8.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: docsh8.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: nn $ $Date: 2001-10-05 17:41:05 $
+ * last change: $Author: rt $ $Date: 2003-12-01 17:54:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -454,12 +454,12 @@ ULONG ScDocShell::DBaseImport( const String& rFullFileName, CharSet eCharSet,
// -----------------------------------------------------------------------
-inline IsAsciiDigit( sal_Unicode c )
+inline sal_Bool IsAsciiDigit( sal_Unicode c )
{
return 0x31 <= c && c <= 0x39;
}
-inline IsAsciiAlpha( sal_Unicode c )
+inline sal_Bool IsAsciiAlpha( sal_Unicode c )
{
return (0x41 <= c && c <= 0x5a) || (0x61 <= c && c <= 0x7a);
}