Move two pgm_base method definitions back to pgm_base.cpp
This commit is contained in:
parent
7252ae551c
commit
284df4adf8
|
@ -34,20 +34,6 @@
|
||||||
#include <wx/filedlg.h>
|
#include <wx/filedlg.h>
|
||||||
|
|
||||||
|
|
||||||
void PGM_BASE::ReadPdfBrowserInfos()
|
|
||||||
{
|
|
||||||
SetPdfBrowserName( GetCommonSettings()->m_System.pdf_viewer_name );
|
|
||||||
m_use_system_pdf_browser = GetCommonSettings()->m_System.use_system_pdf_viewer;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void PGM_BASE::WritePdfBrowserInfos()
|
|
||||||
{
|
|
||||||
GetCommonSettings()->m_System.pdf_viewer_name = GetPdfBrowserName();
|
|
||||||
GetCommonSettings()->m_System.use_system_pdf_viewer = m_use_system_pdf_browser;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Mime type extensions (PDF files are not considered here)
|
// Mime type extensions (PDF files are not considered here)
|
||||||
static wxMimeTypesManager* mimeDatabase;
|
static wxMimeTypesManager* mimeDatabase;
|
||||||
static const wxFileTypeInfo EDAfallbacks[] =
|
static const wxFileTypeInfo EDAfallbacks[] =
|
||||||
|
|
|
@ -991,3 +991,17 @@ const wxString& PGM_BASE::GetExecutablePath() const
|
||||||
{
|
{
|
||||||
return PATHS::GetExecutablePath();
|
return PATHS::GetExecutablePath();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void PGM_BASE::ReadPdfBrowserInfos()
|
||||||
|
{
|
||||||
|
SetPdfBrowserName( GetCommonSettings()->m_System.pdf_viewer_name );
|
||||||
|
m_use_system_pdf_browser = GetCommonSettings()->m_System.use_system_pdf_viewer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void PGM_BASE::WritePdfBrowserInfos()
|
||||||
|
{
|
||||||
|
GetCommonSettings()->m_System.pdf_viewer_name = GetPdfBrowserName();
|
||||||
|
GetCommonSettings()->m_System.use_system_pdf_viewer = m_use_system_pdf_browser;
|
||||||
|
}
|
Loading…
Reference in New Issue