Kaydet (Commit) fddfd6e9 authored tarafından Andre Fischer's avatar Andre Fischer

124361: Avoid warning by not assigning from sal_Int32 to sal_Int16.

üst 6fbf6653
...@@ -78,7 +78,7 @@ struct SC_DLLPUBLIC ScSingleRefData // Single reference (one address) int ...@@ -78,7 +78,7 @@ struct SC_DLLPUBLIC ScSingleRefData // Single reference (one address) int
inline void InitFlags() { bFlags = 0; } // all FALSE inline void InitFlags() { bFlags = 0; } // all FALSE
// #123870# Make it possible to init members to some defined values // #123870# Make it possible to init members to some defined values
inline void InitMembers() { nCol = nRow = nTab = nRelCol = nRelRow = nRelTab = 0; } inline void InitMembers() { nRow = nRelRow = 0; nCol = nRelCol = 0; nTab = nRelTab = 0; }
// InitAddress: InitFlags and set address // InitAddress: InitFlags and set address
inline void InitAddress( const ScAddress& rAdr ); inline void InitAddress( const ScAddress& rAdr );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment