Am 06.02.2012 11:50, schrieb Ivan Timofeev:
On 06.02.2012 13:34, Chr. Rossmanith wrote:
I have replaced parameter ResData *pResData (which became ununsed) with
parameter rtl::OString sTextType. Or should it be rtl::OString&
sTextType instead?
A reference is better, however it is not really per
On 06.02.2012 13:34, Chr. Rossmanith wrote:
I have replaced parameter ResData *pResData (which became ununsed) with
parameter rtl::OString sTextType. Or should it be rtl::OString&
sTextType instead?
A reference is better, however it is not really performance-critical I
think. But if so, refere
Hi again,
The following string concatenation argument have to be passed as a
parameter as well.
+if ( pResData->bText )
+sOutput += pResData->sTextTyp;
+else if ( pResData->bQuickHelpText )
+sOutput += "QuickHelpText";
+else
06.02.2012 00:13, Chr. Rossmanith пишет:
I've added a third parameter nType to ResData2Output() (s. reworked
attached patch)
The following string concatenation argument have to be passed as a
parameter as well.
+if ( pResData->bText )
+sOutput += pResData->sTextTy
Am 05.02.2012 20:52, schrieb Ivan Timofeev:
05.02.2012 23:37, Chr. Rossmanith пишет:
I've moved them to a method ResData2Output(). Please review.
Looks nice. All of the differences seem to be handled...
Oh, oh, oh! No, we must pass all the different values as paramerers to
the function.
I'v