Remove abandoned variable and thus another include

This commit is contained in:
Marek Roszko 2021-06-09 00:07:12 -04:00
parent 0ffabf5e70
commit fad5f9881a
2 changed files with 0 additions and 5 deletions

View File

@ -350,9 +350,6 @@ bool PGM_BASE::setExecutablePath()
void PGM_BASE::loadCommonSettings()
{
m_help_size.x = 500;
m_help_size.y = 400;
m_show_env_var_dialog = GetCommonSettings()->m_Env.show_warning_dialog;
m_editor_name = GetCommonSettings()->m_System.editor_name;

View File

@ -36,7 +36,6 @@
#include <search_stack.h>
#include <settings/environment.h>
#include <wx/filename.h>
#include <wx/gdicmn.h>
#undef pid_t
#include <pybind11/embed.h>
@ -330,7 +329,6 @@ protected:
/// The file name of the the program selected for browsing pdf files.
wxString m_pdf_browser;
wxString m_editor_name;
wxSize m_help_size;
/// Flag to indicate if the environment variable overwrite warning dialog should be shown.
bool m_show_env_var_dialog;