Skip to content

Commit

Permalink
Save temp file in writable location on all platforms. Re #4362
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders-Markvardsen committed Jan 24, 2012
1 parent 72b30ff commit b21f985
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,10 @@ Logger& MuonAnalysis::g_log = Logger::get("MuonAnalysis");
///Constructor
MuonAnalysis::MuonAnalysis(QWidget *parent) :
UserSubWindow(parent), m_last_dir(), m_workspace_name("MuonAnalysis"), m_currentDataName(""), m_assigned(false), m_groupTableRowInFocus(0), m_pairTableRowInFocus(0),
m_tabNumber(0), m_groupNames(), m_groupingTempFilename("tempMuonAnalysisGrouping.xml"), m_settingsGroup("CustomInterfaces/MuonAnalysis/"), m_updating(false), m_loaded(false)
m_tabNumber(0), m_groupNames(), m_settingsGroup("CustomInterfaces/MuonAnalysis/"), m_updating(false), m_loaded(false)
{
// this will be done better with poco later
m_groupingTempFilename = ConfigService::Instance().getTempDir()+"tempMuonAnalysisGrouping.xml";
}

/// Set up the dialog layout
Expand Down

0 comments on commit b21f985

Please sign in to comment.