diff options
Diffstat (limited to 'kchart/kdchart/KDChartCustomBoxWrapper.cpp')
-rw-r--r-- | kchart/kdchart/KDChartCustomBoxWrapper.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/kchart/kdchart/KDChartCustomBoxWrapper.cpp b/kchart/kdchart/KDChartCustomBoxWrapper.cpp new file mode 100644 index 00000000..2ee28eba --- /dev/null +++ b/kchart/kdchart/KDChartCustomBoxWrapper.cpp @@ -0,0 +1,13 @@ +#include "KDChartCustomBoxWrapper.h" +KDChartCustomBoxWrapper::KDChartCustomBoxWrapper( KDChartCustomBox* data) + :QObject(0), _data(data) +{ +} + +const KDChartTextPiece* KDChartCustomBoxWrapper::content() const +{ + return &_data->content(); +} + + +#include "KDChartCustomBoxWrapper.moc" |