summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-07-07 20:37:43 +0200
committerCarl Hetherington <cth@carlh.net>2023-07-07 20:37:43 +0200
commit3fb07619cdc215007ae791833e7a101682b4323b (patch)
tree77a468e9bb30737c1e01d3814bc9c95c9c8e0f76 /src
parentdb96d08794cf7f2423b26887eb7a27e0bb0f1044 (diff)
Tweak some whitespace style.
Diffstat (limited to 'src')
-rw-r--r--src/wx/gpu_config_panel.cc18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/wx/gpu_config_panel.cc b/src/wx/gpu_config_panel.cc
index e8f036bfb..5d8365eb9 100644
--- a/src/wx/gpu_config_panel.cc
+++ b/src/wx/gpu_config_panel.cc
@@ -185,7 +185,8 @@ GPUPage::setup()
}
-void GPUPage::config_changed()
+void
+GPUPage::config_changed()
{
auto config = Config::instance();
@@ -203,7 +204,8 @@ void GPUPage::config_changed()
}
-void GPUPage::enable_gpu_changed()
+void
+GPUPage::enable_gpu_changed()
{
auto config = Config::instance();
@@ -216,26 +218,30 @@ void GPUPage::enable_gpu_changed()
}
-void GPUPage::binary_location_changed()
+void
+GPUPage::binary_location_changed()
{
Config::instance()->set_gpu_binary_location(wx_to_std(_binary_location->GetPath()));
_gpu_list_control->update();
}
-void GPUPage::server_changed()
+void
+GPUPage::server_changed()
{
Config::instance()->set_gpu_license_server(wx_to_std(_server->GetValue()));
}
-void GPUPage::port_changed()
+void
+GPUPage::port_changed()
{
Config::instance()->set_gpu_license_port(_port->GetValue());
}
-void GPUPage::license_changed()
+void
+GPUPage::license_changed()
{
Config::instance()->set_gpu_license(_license->get());
}