summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorRob Snelders <rob@ertai.nl>2011-02-10 09:59:21 +0000
committerMichael Meeks <michael.meeks@novell.com>2011-02-10 10:01:00 +0000
commit31b0769d2c6d58bbd2e067ee88fd5f45f518182f (patch)
tree040dfeb194624944fe372c3b32562476b5360c56 /vbahelper
parent8480f694591a70fe2fb3c6c1c4f0b6006115e5d5 (diff)
translate comments
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbaapplicationbase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
index 11ada96629aa..9c72951fd748 100644
--- a/vbahelper/source/vbahelper/vbaapplicationbase.cxx
+++ b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
@@ -89,7 +89,7 @@ public:
Time aTimeNow;
Date aRefDate( 1,1,1900 );
long nDiffDays = (long)(aDateNow - aRefDate);
- nDiffDays += 2; // Anpassung VisualBasic: 1.Jan.1900 == 2
+ nDiffDays += 2; // Change VisualBasic: 1.Jan.1900 == 2
long nDiffSeconds = aTimeNow.GetHour() * 3600 + aTimeNow.GetMin() * 60 + aTimeNow.GetSec();
return (double)nDiffDays + ((double)nDiffSeconds)/(double)(24*3600);