summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/CMakeSetupDialog.cxx
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2021-12-21 19:39:04 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2022-01-06 23:52:30 (GMT)
commitfd6ea2f67fc5fd1aee27ae92d6a16bc0fba1209e (patch)
treec4dbf6fc64a862facea8948d350df173393a2629 /Source/QtDialog/CMakeSetupDialog.cxx
parent13e71b7c3ec9351f0c25656e72c1c0199ddf771c (diff)
downloadCMake-fd6ea2f67fc5fd1aee27ae92d6a16bc0fba1209e.zip
CMake-fd6ea2f67fc5fd1aee27ae92d6a16bc0fba1209e.tar.gz
CMake-fd6ea2f67fc5fd1aee27ae92d6a16bc0fba1209e.tar.bz2
Refactor: Rename cmCMakePresetsFile to cmCMakePresetsGraph
And change all references to "file" to say "graph" instead.
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.cxx')
-rw-r--r--Source/QtDialog/CMakeSetupDialog.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx
index 1785571..f90b781 100644
--- a/Source/QtDialog/CMakeSetupDialog.cxx
+++ b/Source/QtDialog/CMakeSetupDialog.cxx
@@ -730,12 +730,12 @@ void CMakeSetupDialog::updatePreset(const QString& name)
}
void CMakeSetupDialog::showPresetLoadError(
- const QString& dir, cmCMakePresetsFile::ReadFileResult result)
+ const QString& dir, cmCMakePresetsGraph::ReadFileResult result)
{
QMessageBox::warning(
this, "Error Reading CMake Presets",
QString::fromLocal8Bit("Could not read presets from %1: %2")
- .arg(dir, cmCMakePresetsFile::ResultToString(result)));
+ .arg(dir, cmCMakePresetsGraph::ResultToString(result)));
}
void CMakeSetupDialog::doBinaryBrowse()