~ubuntu-branches/ubuntu/karmic/kst/karmic

« back to all changes in this revision

Viewing changes to kst/kst/kstmetaplot.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-06-30 19:11:30 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630191130-acumuar75bz4puty
Tags: 1.2.1-1ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "kstmetaplot.h"
19
19
 
20
20
 
21
 
KstMetaPlot::KstMetaPlot(const QString& type) : KstBorderedViewObject(type) {
22
 
}
23
 
 
24
 
 
25
 
KstMetaPlot::KstMetaPlot(const QDomElement& e) : KstBorderedViewObject(e) {
26
 
}
27
 
 
28
 
 
29
 
KstMetaPlot::KstMetaPlot(const KstMetaPlot& metaPlot) : KstBorderedViewObject(metaPlot) {
 
21
KstMetaPlot::KstMetaPlot(const QString& type)
 
22
: KstBorderedViewObject(type) {
 
23
  setFollowsFlow(true);
 
24
}
 
25
 
 
26
 
 
27
KstMetaPlot::KstMetaPlot(const QDomElement& e)
 
28
: KstBorderedViewObject(e) {
 
29
  setFollowsFlow(true);
 
30
}
 
31
 
 
32
 
 
33
KstMetaPlot::KstMetaPlot(const KstMetaPlot& metaPlot)
 
34
: KstBorderedViewObject(metaPlot) {
30
35
}
31
36
 
32
37
 
39
44
}
40
45
 
41
46
 
42
 
void KstMetaPlot::saveTag(QTextStream& ts, const QString& indent) {
43
 
  KstBorderedViewObject::saveTag(ts, indent);
44
 
}
45
 
 
46
 
 
47
47
#include "kstmetaplot.moc"
48
48
// vim: ts=2 sw=2 et