diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2019-02-27 16:13:48 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2019-02-27 20:50:47 +0100 |
commit | cfb2e03a683a8d217b00b8abfd9c55bf61059462 (patch) | |
tree | d8cfa2da7ff739c8ca15681e67f3f59bb3d61693 /vcl/qt5/Qt5Frame.cxx | |
parent | 279c7f83a57c4d3991930ee80e9d9c287c21270a (diff) |
tdf#104235: Qt5Frame: Set default icon
Set a default icon in Qt5Frame constructor, similar to how it's done
for the gtk and gtk3 VCL plugins in 'GtkSalFrame::InitCommon'.
Change-Id: I4e4e62ffa0eca6499f4752ff467d004cae68788f
Reviewed-on: https://gerrit.libreoffice.org/68450
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'vcl/qt5/Qt5Frame.cxx')
-rw-r--r-- | vcl/qt5/Qt5Frame.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx index d633b0836557..c687c4a279c3 100644 --- a/vcl/qt5/Qt5Frame.cxx +++ b/vcl/qt5/Qt5Frame.cxx @@ -161,6 +161,8 @@ Qt5Frame::Qt5Frame(Qt5Frame* pParent, SalFrameStyleFlags nStyle, bool bUseCairo) //m_aSystemData.pWidget = m_pQWidget; //m_aSystemData.nScreen = m_nXScreen.getXScreen(); m_aSystemData.pToolkit = "qt5"; + + SetIcon(SV_ICON_ID_OFFICE); } Qt5Frame::~Qt5Frame() |