Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/dview/dvdcctrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ wxDVDCCtrl::~wxDVDCCtrl() {
}

void wxDVDCCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

wxString s;
bool success;
Expand All @@ -111,7 +111,7 @@ void wxDVDCCtrl::ReadState(std::string filename) {
}

void wxDVDCCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions src/dview/dvdmapctrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ wxDVDMapCtrl::~wxDVDMapCtrl() {
}

void wxDVDMapCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

wxString s;
bool success;
Expand Down Expand Up @@ -384,7 +384,7 @@ void wxDVDMapCtrl::OnTimer(wxTimerEvent &) {
}

void wxDVDMapCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions src/dview/dvpncdfctrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ wxDVPnCdfCtrl::~wxDVPnCdfCtrl() {
}

void wxDVPnCdfCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

wxString s;
bool success;
Expand Down Expand Up @@ -272,7 +272,7 @@ void wxDVPnCdfCtrl::ReadState(std::string filename) {
}

void wxDVPnCdfCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions src/dview/dvprofilectrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ wxDVProfileCtrl::~wxDVProfileCtrl() {
}

void wxDVProfileCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

wxString s;
bool success;
Expand Down Expand Up @@ -337,7 +337,7 @@ void wxDVProfileCtrl::OnTimer(wxTimerEvent &) {
}

void wxDVProfileCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions src/dview/dvscatterplotctrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ wxDVScatterPlotCtrl::~wxDVScatterPlotCtrl() {
}

void wxDVScatterPlotCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

wxString s;
bool success;
Expand Down Expand Up @@ -182,7 +182,7 @@ void wxDVScatterPlotCtrl::ReadState(std::string filename) {
}

void wxDVScatterPlotCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions src/dview/dvstatisticstablectrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ wxDVStatisticsTableCtrl::~wxDVStatisticsTableCtrl(void) {
}

void wxDVStatisticsTableCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

wxString s;
bool success;
Expand All @@ -470,7 +470,7 @@ void wxDVStatisticsTableCtrl::ReadState(std::string filename) {
}

void wxDVStatisticsTableCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions src/dview/dvtimeseriesctrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ wxDVTimeSeriesCtrl::~wxDVTimeSeriesCtrl(void) {
}

void wxDVTimeSeriesCtrl::ReadState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

// Note: on Mac, these settings are stored in a plist file,
// "DView Preferences" in folder ~/Library/Preferences.
Expand Down Expand Up @@ -984,7 +984,7 @@ void wxDVTimeSeriesCtrl::OnTimer(wxTimerEvent &) {
}

void wxDVTimeSeriesCtrl::WriteState(std::string filename) {
wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");

bool success;
bool debugging = false;
Expand Down
4 changes: 2 additions & 2 deletions tools/dview/dview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class DViewFrame : public wxFrame {
mPlotCtrl = new wxDVPlotCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0);
mPlotCtrl->DisplayTabs();

wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");
long ct = 0;
if (cfg.Read("RecentCount", &ct))
mRecentCount = (int) ct;
Expand Down Expand Up @@ -262,7 +262,7 @@ class DViewFrame : public wxFrame {

long ct = (long) mRecentCount;

wxConfig cfg("DView", "NLR");
wxConfig cfg("DView", "NREL");
cfg.Write("RecentCount", ct);
for (int i = 0; i < mRecentCount; i++) {
wxString key;
Expand Down
Loading