summaryrefslogtreecommitdiff
path: root/framework/collector
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2004-01-20 07:38:26 +0000
committerCarsten Driesner <cd@openoffice.org>2004-01-20 07:38:26 +0000
commite52d18f94dba51b6d450b066db0057a74499609d (patch)
tree49857a9dd07a84c32bc25cada094e9ab1643294c /framework/collector
parent35c36a6f93cb4e53cbd1af99e4fc19415b828085 (diff)
#111899# Fixed badly formed expression problem
Diffstat (limited to 'framework/collector')
-rw-r--r--framework/collector/cmduicollector.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/collector/cmduicollector.cxx b/framework/collector/cmduicollector.cxx
index 32c5cc9167a2..aaeb12439744 100644
--- a/framework/collector/cmduicollector.cxx
+++ b/framework/collector/cmduicollector.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: cmduicollector.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: cd $ $Date: 2003-12-11 15:59:58 $
+ * last change: $Author: cd $ $Date: 2004-01-20 08:38:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -325,7 +325,7 @@ bool ReadCSVFile( const OUString& aCVSFileURL, MODULES eModule, const OUString&
aCmdLabel.nID = nID;
aCmdLabel.aCommand = aUnoCmd;
aCmdLabel.aCommand += OStringToOUString( aCmdName, RTL_TEXTENCODING_ASCII_US );
- aCmdLabel.nModules |= ( 1 << unsigned long( eModule ));
+ aCmdLabel.nModules |= ( 1 << (unsigned long)( eModule ));
moduleMapFiles[int(eModule)].insert( CommandIDToLabelsMap::value_type( nID, aCmdLabel ));
modulePopupMenusCmd[int(eModule)].insert( CommandToLabelsMap::value_type( aCmdLabel.aCommand, aCmdLabel ));
}