diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-02-17 15:22:28 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-02-17 16:47:36 +0100 |
commit | 946e12ac87237a1885fd3996a5549f56cc7de3a3 (patch) | |
tree | 2b7aa217f2262209623f8bcc0226430e2081be93 /include/sfx2/infobar.hxx | |
parent | 9da5675de3ca8a047bf45fd601522a6337efb78e (diff) |
sfx2 infobar: allow setting the message style
Change-Id: I73151a78d1b396179776847d6fbb2da1dd8755e8
Diffstat (limited to 'include/sfx2/infobar.hxx')
-rw-r--r-- | include/sfx2/infobar.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/sfx2/infobar.hxx b/include/sfx2/infobar.hxx index 8d0fcbce97fc..1e5a31ea87d9 100644 --- a/include/sfx2/infobar.hxx +++ b/include/sfx2/infobar.hxx @@ -54,7 +54,8 @@ class SfxInfoBarWindow : public vcl::Window const OUString& sMessage, const basegfx::BColor* pBackgroundColor, const basegfx::BColor* pForegroundColor, - const basegfx::BColor* pMessageColor ); + const basegfx::BColor* pMessageColor, + WinBits nMessageStyle ); virtual ~SfxInfoBarWindow( ); virtual void dispose() override; @@ -87,7 +88,8 @@ class SfxInfoBarContainerWindow : public vcl::Window const OUString& sMessage, const basegfx::BColor* pBackgroundColor, const basegfx::BColor* pForegroundColor, - const basegfx::BColor* pMessageColor); + const basegfx::BColor* pMessageColor, + WinBits nMessageStyle); SfxInfoBarWindow* getInfoBar(const OUString& sId); void removeInfoBar(SfxInfoBarWindow* pInfoBar); |