View | Details | Raw Unified | Return to issue 9325
Collapse All | Expand All

(-)cmdevt.hxx (-2 / +2 lines)
Lines 296-303 Link Here
296
                                           DictationCommandType eType,
296
                                           DictationCommandType eType,
297
                                           USHORT nCommand ) :
297
                                           USHORT nCommand ) :
298
    maText( rStr ),
298
    maText( rStr ),
299
    meType( eType ),
299
    mnCommand( nCommand ),
300
    mnCommand( nCommand )
300
    meType( eType )
301
{
301
{
302
}
302
}
303
303
(-)print.hxx (-1 / +1 lines)
Lines 130-136 Link Here
130
130
131
    PrinterPage() : mpMtf( new GDIMetaFile() ) {}
131
    PrinterPage() : mpMtf( new GDIMetaFile() ) {}
132
    PrinterPage( GDIMetaFile* pMtf, BOOL bNewJobSetup, const JobSetup& rSetup ) :
132
    PrinterPage( GDIMetaFile* pMtf, BOOL bNewJobSetup, const JobSetup& rSetup ) :
133
           mpMtf( pMtf ), mbNewJobSetup( bNewJobSetup ), maJobSetup( rSetup ) {}
133
           mpMtf( pMtf ), maJobSetup( rSetup ), mbNewJobSetup( bNewJobSetup ) {}
134
    ~PrinterPage() { delete mpMtf; }
134
    ~PrinterPage() { delete mpMtf; }
135
135
136
    GDIMetaFile*    GetGDIMetaFile() const { return mpMtf; }
136
    GDIMetaFile*    GetGDIMetaFile() const { return mpMtf; }
(-)svapp.hxx (-2 / +2 lines)
Lines 283-291 Link Here
283
                                           const ByteString& rEvent,
283
                                           const ByteString& rEvent,
284
                                           const UniString& rData ) :
284
                                           const UniString& rData ) :
285
    aSenderAppName( rSenderAppName ),
285
    aSenderAppName( rSenderAppName ),
286
    aAppAddr( rAppAddr ),
287
    aEvent( rEvent ),
286
    aEvent( rEvent ),
288
    aData( rData )
287
    aData( rData ),
288
    aAppAddr( rAppAddr )
289
{
289
{
290
}
290
}
291
291

Return to issue 9325