[Kst] extragear/graphics/kst/kst
Andras Mantia
amantia at kde.org
Sat Dec 17 09:56:14 CET 2005
SVN commit 489102 by amantia:
Visibility fixes.
M +1 -1 extdate/Makefile.am
M +3 -2 extdate/extdatetime.h
M +2 -1 kstborderedviewobject.h
M +5 -2 kstcombobox.h
--- trunk/extragear/graphics/kst/kst/extdate/Makefile.am #489101:489102
@@ -1,4 +1,4 @@
-INCLUDES= $(all_includes)
+INCLUDES= -I$(top_srcdir)/kst/kst $(all_includes)
lib_LTLIBRARIES = libextdate.la
--- trunk/extragear/graphics/kst/kst/extdate/extdatetime.h #489101:489102
@@ -24,6 +24,7 @@
#if KDE_VERSION >= KDE_MAKE_VERSION(3,2,0)
#include <kdemacros.h>
#endif
+#include "kst_export.h"
#define INVALID_DAY LONG_MIN
@@ -38,7 +39,7 @@
class ExtDateTime;
-class ExtDate
+class KST_EXPORT ExtDate
{
public:
ExtDate() : m_jd(INVALID_DAY), m_year(0), m_month(0), m_day(0) {}
@@ -129,7 +130,7 @@
ExtDateTime class
*****************************************************************************/
-class ExtDateTime
+class KST_EXPORT ExtDateTime
{
public:
ExtDateTime() {} // set null date and null time
--- trunk/extragear/graphics/kst/kst/kstborderedviewobject.h #489101:489102
@@ -19,6 +19,7 @@
#define KSTBORDEREDVIEWOBJECT_H
#include "kstviewobject.h"
+#include "kst_export.h"
/***************************************************************************
@@ -57,7 +58,7 @@
class KstBorderedViewObject;
typedef KstSharedPtr<KstBorderedViewObject> KstBorderedViewObjectPtr;
-class KstBorderedViewObject : public KstViewObject {
+class KST_EXPORT KstBorderedViewObject : public KstViewObject {
Q_OBJECT
Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor)
Q_PROPERTY(int borderWidth READ borderWidth WRITE setBorderWidth)
--- trunk/extragear/graphics/kst/kst/kstcombobox.h #489101:489102
@@ -137,6 +137,9 @@
* @short An enhanced combo box.
* @author Dawit Alemayehu <adawit at kde.org>
*/
+
+#include "kst_export.h"
+
class KstComboBox : public QComboBox, public KCompletionBase
{
Q_OBJECT
@@ -154,7 +157,7 @@
* @param parent The parent object of this widget
* @param name The name of this widget
*/
- KstComboBox( QWidget *parent=0, const char *name=0 );
+ KST_EXPORT KstComboBox( QWidget *parent=0, const char *name=0 );
/**
* Constructs a "read-write" or "read-only" combo box depending on
@@ -165,7 +168,7 @@
* @param parent The parent object of this widget.
* @param name The name of this widget.
*/
- KstComboBox( bool rw, QWidget *parent=0, const char *name=0 );
+ KST_EXPORT KstComboBox( bool rw, QWidget *parent=0, const char *name=0 );
/**
* Destructor.
More information about the Kst
mailing list