From f724dab4b2d0099131f937d0c9e2b7b21d023c62 Mon Sep 17 00:00:00 2001
From: Jeff Young <jeff@rokeby.ie>
Date: Mon, 3 Feb 2025 22:15:56 +0000
Subject: [PATCH] Fix build.

---
 pcbnew/dialogs/dialog_plot.cpp | 2 +-
 pcbnew/dialogs/dialog_plot.h   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pcbnew/dialogs/dialog_plot.cpp b/pcbnew/dialogs/dialog_plot.cpp
index 723127975b..ed7c223fa1 100644
--- a/pcbnew/dialogs/dialog_plot.cpp
+++ b/pcbnew/dialogs/dialog_plot.cpp
@@ -769,7 +769,7 @@ void DIALOG_PLOT::OnSetScaleOpt( wxCommandEvent& event )
 }
 
 
-void DIALOG_PLOT::OnOutputDirectoryBrowseClicked( wxCommandEvent& event )
+void DIALOG_PLOT::onOutputDirectoryBrowseClicked( wxCommandEvent& event )
 {
     // Build the absolute path of current output directory to preselect it in the file browser.
     std::function<bool( wxString* )> textResolver =
diff --git a/pcbnew/dialogs/dialog_plot.h b/pcbnew/dialogs/dialog_plot.h
index 8fb33e2828..960b454ca6 100644
--- a/pcbnew/dialogs/dialog_plot.h
+++ b/pcbnew/dialogs/dialog_plot.h
@@ -50,7 +50,7 @@ private:
 
     // Event called functions
     void Plot( wxCommandEvent& event ) override;
-    void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) override;
+    void onOutputDirectoryBrowseClicked( wxCommandEvent& event ) override;
     void OnRightClickLayers( wxMouseEvent& event );
     void OnRightClickAllLayers( wxMouseEvent& event );
     void SetPlotFormat( wxCommandEvent& event ) override;