camerauis/cameraxui/cxengine/src/cxeimagedataqueuesymbian.cpp
changeset 37 64817133cd1d
parent 19 d9aefe59d544
equal deleted inserted replaced
36:b12f3922a74f 37:64817133cd1d
    78 {
    78 {
    79     CX_DEBUG_ASSERT( index >= 0 && index < mList.count() );
    79     CX_DEBUG_ASSERT( index >= 0 && index < mList.count() );
    80     return *mList[index];
    80     return *mList[index];
    81 }
    81 }
    82 
    82 
    83 CxeImageDataItemSymbian *CxeImageDataQueueSymbian::startSave( QByteArray data, QString path, int id )
    83 CxeImageDataItemSymbian *CxeImageDataQueueSymbian::startSave(QByteArray data, QString path, int id, bool addLocation)
    84 {
    84 {
    85     CX_DEBUG_ENTER_FUNCTION();
    85     CX_DEBUG_ENTER_FUNCTION();
    86 
    86 
    87     CxeImageDataItemSymbian* dataItem = new CxeImageDataItemSymbian(data, path, id);
    87     CxeImageDataItemSymbian* dataItem = new CxeImageDataItemSymbian(data, path, id, addLocation);
    88     mList.append( dataItem );
    88     mList.append(dataItem);
    89 
    89 
    90     CX_DEBUG_EXIT_FUNCTION();
    90     CX_DEBUG_EXIT_FUNCTION();
    91     return dataItem;
    91     return dataItem;
    92 }
    92 }
    93 
    93