Add a spellchecking mode for sphinx and fix some typos

* The worst one was Persistant -> Persistent. This involved renaming
  PersistentConfig but the impact of that is considered minimal enough to be
  worth fixing.
This commit is contained in:
baldurk
2026-08-13 17:46:47 +01:00
parent 5e462c5ebe
commit bb4017a965
75 changed files with 653 additions and 248 deletions
+13 -13
View File
@@ -93,7 +93,7 @@ ShaderToolOutput ShaderProcessingTool::CompileShader(QWidget *window, rdcstr sou
}
////////////////////////////////////////////////////////////////////////////////
// PersistantConfig.cpp stubs
// PersistentConfig.cpp stubs
////////////////////////////////////////////////////////////////////////////////
rdcstr BugReport::URL() const
@@ -101,56 +101,56 @@ rdcstr BugReport::URL() const
return "";
}
bool PersistantConfig::SetStyle()
bool PersistentConfig::SetStyle()
{
return false;
}
PersistantConfig::PersistantConfig()
PersistentConfig::PersistentConfig()
{
}
PersistantConfig::~PersistantConfig()
PersistentConfig::~PersistentConfig()
{
}
bool PersistantConfig::Load(const rdcstr &filename)
bool PersistentConfig::Load(const rdcstr &filename)
{
return false;
}
bool PersistantConfig::Save()
bool PersistentConfig::Save()
{
return false;
}
void PersistantConfig::Close()
void PersistentConfig::Close()
{
}
rdcarray<RemoteHost> PersistantConfig::GetRemoteHosts()
rdcarray<RemoteHost> PersistentConfig::GetRemoteHosts()
{
return {};
}
RemoteHost PersistantConfig::GetRemoteHost(const rdcstr &)
RemoteHost PersistentConfig::GetRemoteHost(const rdcstr &)
{
return RemoteHost();
}
void PersistantConfig::AddRemoteHost(RemoteHost host)
void PersistentConfig::AddRemoteHost(RemoteHost host)
{
}
void PersistantConfig::RemoveRemoteHost(RemoteHost host)
void PersistentConfig::RemoveRemoteHost(RemoteHost host)
{
}
void PersistantConfig::UpdateEnumeratedProtocolDevices()
void PersistentConfig::UpdateEnumeratedProtocolDevices()
{
}
void PersistantConfig::SetupFormatting()
void PersistentConfig::SetupFormatting()
{
}