Update windows version

This commit is contained in:
Ximi1970
2023-07-22 23:33:32 +02:00
parent f2ca0eefcb
commit 8da47bd2ce
2 changed files with 23 additions and 0 deletions

View File

@@ -103,6 +103,24 @@ Preferences::MinimizeIconType WindowCtrlWin::getMinimizeIconType() const
}
/*
* Set the minimize type
*/
void WindowCtrlUnix::setCloseType( Preferences::CloseType type )
{
m_close_type = type;
}
/*
* Get the close type
*/
Preferences::CloseType WindowCtrlUnix::getCloseType() const
{
return m_close_type;
}
/*
* Get the parent pid of SysTray-X, TB hopefully
*/

View File

@@ -317,6 +317,11 @@ class WindowCtrlWin : public QObject
*/
Preferences::MinimizeIconType m_minimize_icon_type;
/**
* @brief m_close_type. Close type.
*/
Preferences::CloseType m_close_type;
/**
* @brief m_hook
*/