~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/tests/lenmus_test_app.cpp

  • Committer: cecilios
  • Date: 2011-08-18 15:04:04 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:branches/TRY-5.0:688
cleaning and commit recent work

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    std::string m_scores_path;
41
41
 
42
42
    AppTestFixture()     //SetUp fixture
43
 
        : m_pSavePrefs( wxConfigBase::Get() )
44
 
        , m_appScope(cout)
 
43
        //: m_pSavePrefs( wxConfigBase::Get() )
 
44
        : m_appScope(cout)
45
45
    {
46
46
        
47
47
        m_scores_path = LENMUS_TEST_SCORES_PATH;
49
49
 
50
50
    ~AppTestFixture()    //TearDown fixture
51
51
    {
52
 
        wxConfigBase::Set(m_pSavePrefs);
 
52
        //wxConfigBase::Set(m_pSavePrefs);
53
53
    }
54
54
};
55
55