Skip to content

Commit de645b3

Browse files
Fixed DLL export of DockAreaTabBar, DockAreaTitleBar and ElidingLabel
1 parent f6174fa commit de645b3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/DockAreaTabBar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class CFloatingDockContainer;
4949
* has not finished. And we need to remove a tab, if the user drags a
5050
* a dock widget out of a group of tabbed widgets
5151
*/
52-
class CDockAreaTabBar : public QScrollArea
52+
class ADS_EXPORT CDockAreaTabBar : public QScrollArea
5353
{
5454
Q_OBJECT
5555
private:

src/DockAreaTitleBar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct DockAreaTitleBarPrivate;
4747
* The title bar contains a tabbar with all tabs for a dock widget group and
4848
* with a tabs menu button, a undock button and a close button.
4949
*/
50-
class CDockAreaTitleBar : public QFrame
50+
class ADS_EXPORT CDockAreaTitleBar : public QFrame
5151
{
5252
Q_OBJECT
5353
private:

src/ElidingLabel.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
//============================================================================
3232
#include <QLabel>
3333

34+
#include "ads_globals.h"
35+
3436
namespace ads
3537
{
3638
struct ElidingLabelPrivate;
@@ -41,7 +43,7 @@ struct ElidingLabelPrivate;
4143
* and reading the text via a pointer to the base class QLabel does not work
4244
* properly
4345
*/
44-
class CElidingLabel : public QLabel
46+
class ADS_EXPORT CElidingLabel : public QLabel
4547
{
4648
Q_OBJECT
4749
private:

0 commit comments

Comments
 (0)