From fad5f9881a3b9fc8a02967c09f90a596b86e0c7e Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Wed, 9 Jun 2021 00:07:12 -0400 Subject: [PATCH] Remove abandoned variable and thus another include --- common/pgm_base.cpp | 3 --- include/pgm_base.h | 2 -- 2 files changed, 5 deletions(-) diff --git a/common/pgm_base.cpp b/common/pgm_base.cpp index 33d4cf0839..68dbeabe5b 100644 --- a/common/pgm_base.cpp +++ b/common/pgm_base.cpp @@ -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; diff --git a/include/pgm_base.h b/include/pgm_base.h index 995e3cd999..a5d3673ed5 100644 --- a/include/pgm_base.h +++ b/include/pgm_base.h @@ -36,7 +36,6 @@ #include #include #include -#include #undef pid_t #include @@ -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;