camerauis/cameraxui/cxengine/src/cxefilenamegeneratorsymbian.cpp
changeset 46 c826656d6714
parent 42 feebad15db8c
equal deleted inserted replaced
42:feebad15db8c 46:c826656d6714
     1 /*
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    92     mMonthCounterVideo = -1;
    92     mMonthCounterVideo = -1;
    93     mImageCounter = 0;
    93     mImageCounter = 0;
    94     mVideoCounter = 0;
    94     mVideoCounter = 0;
    95 
    95 
    96     // Retrieve last used counter values from settings
    96     // Retrieve last used counter values from settings
    97     mSettings.get(CxeSettingIds::FNAME_MONTH_FOLDER, mCurrentMonth);
    97     mCurrentMonth = mSettings.get<QString>(CxeSettingIds::FNAME_MONTH_FOLDER, "");
    98     mSettings.get(CxeSettingIds::FNAME_IMAGE_COUNTER, mImageCounter);
    98     mImageCounter = mSettings.get<int>(CxeSettingIds::FNAME_IMAGE_COUNTER, 0);
    99     mSettings.get(CxeSettingIds::FNAME_VIDEO_COUNTER, mVideoCounter);
    99     mVideoCounter = mSettings.get<int>(CxeSettingIds::FNAME_VIDEO_COUNTER, 0);
   100 
   100 
   101     OstTrace0(camerax_performance, CXEFILENAMEGENERATOR_2, "msg: e_CX_FILENAMEGENERATOR_NEW 0");
   101     OstTrace0(camerax_performance, CXEFILENAMEGENERATOR_2, "msg: e_CX_FILENAMEGENERATOR_NEW 0");
   102     CX_DEBUG_EXIT_FUNCTION();
   102     CX_DEBUG_EXIT_FUNCTION();
   103 }
   103 }
   104 
   104