[Kst] branches/work/kst/portto4/kst/src

Peter Kümmel syntheticpp at gmx.net
Fri Dec 31 19:34:08 CET 2010


SVN commit 1210499 by kuemmel:

build all build in plugins with QSharedPointer support

 M  +3 -0      plugins/dataobject/bin/bin.h  
 M  +4 -0      plugins/dataobject/chop/chop.h  
 M  +3 -0      plugins/dataobject/crossspectrum/crossspectrum.h  
 M  +3 -0      plugins/dataobject/differentiation/differentiation.h  
 M  +3 -0      plugins/dataobject/effectivebandwidth/effectivebandwidth.h  
 M  +3 -0      plugins/dataobject/genericfilter/genericfilter.h  
 M  +3 -0      plugins/dataobject/linefit/linefit.h  
 M  +3 -0      plugins/dataobject/lockin/lockin.h  
 M  +3 -0      plugins/dataobject/phase/phase.h  
 M  +3 -0      plugins/dataobject/shift/shift.h  
 M  +3 -0      plugins/dataobject/statistics/statistics.h  
 M  +3 -0      plugins/dataobject/syncbin/syncbin.h  
 M  +3 -0      plugins/filters/despike/filterdespike.h  
 M  +3 -0      plugins/filters/differentiation/differentiation.h  
 M  +1 -1      widgets/vectorselector.cpp  


--- branches/work/kst/portto4/kst/src/plugins/dataobject/bin/bin.h #1210498:1210499
@@ -45,6 +45,9 @@
 
   protected:
     BinSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~BinSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/chop/chop.h #1210498:1210499
@@ -44,8 +44,12 @@
 
   protected:
     ChopSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~ChopSource();
 
+  protected:
   friend class Kst::ObjectStore;
 
 
--- branches/work/kst/portto4/kst/src/plugins/dataobject/crossspectrum/crossspectrum.h #1210498:1210499
@@ -47,6 +47,9 @@
 
   protected:
     CrossSpectrumSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~CrossSpectrumSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/differentiation/differentiation.h #1210498:1210499
@@ -42,6 +42,9 @@
 
   protected:
     DifferentiationSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~DifferentiationSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/effectivebandwidth/effectivebandwidth.h #1210498:1210499
@@ -48,6 +48,9 @@
 
   protected:
     EffectiveBandwidthSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~EffectiveBandwidthSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/genericfilter/genericfilter.h #1210498:1210499
@@ -45,6 +45,9 @@
 
   protected:
     GenericFilterSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~GenericFilterSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/linefit/linefit.h #1210498:1210499
@@ -45,6 +45,9 @@
 
   protected:
     LineFitSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~LineFitSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/lockin/lockin.h #1210498:1210499
@@ -43,6 +43,9 @@
 
   protected:
     LockInSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~LockInSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/phase/phase.h #1210498:1210499
@@ -47,6 +47,9 @@
 
   protected:
     PhaseSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~PhaseSource();
 
   private:
--- branches/work/kst/portto4/kst/src/plugins/dataobject/shift/shift.h #1210498:1210499
@@ -45,6 +45,9 @@
 
   protected:
     ShiftSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~ShiftSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/dataobject/statistics/statistics.h #1210498:1210499
@@ -44,6 +44,9 @@
 
   protected:
     StatisticsSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~StatisticsSource();
 
   private:
--- branches/work/kst/portto4/kst/src/plugins/dataobject/syncbin/syncbin.h #1210498:1210499
@@ -48,6 +48,9 @@
 
   protected:
     SyncBinSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~SyncBinSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/filters/despike/filterdespike.h #1210498:1210499
@@ -48,6 +48,9 @@
 
   protected:
     FilterDespikeSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~FilterDespikeSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/plugins/filters/differentiation/differentiation.h #1210498:1210499
@@ -47,6 +47,9 @@
 
   protected:
     DifferentiationSource(Kst::ObjectStore *store);
+#ifdef KST_USE_QSHAREDPOINTER
+  public:
+#endif
     ~DifferentiationSource();
 
   friend class Kst::ObjectStore;
--- branches/work/kst/portto4/kst/src/widgets/vectorselector.cpp #1210498:1210499
@@ -145,7 +145,7 @@
   } else {
     QString vectorname;
 #ifdef KST_USE_QSHAREDPOINTER
-    DialogLauncher::self()->showVectorDialog(vectorname, selectedVector().objectCast<Object>()), true);
+    DialogLauncher::self()->showVectorDialog(vectorname, selectedVector().objectCast<Object>(), true);
 #else
     DialogLauncher::self()->showVectorDialog(vectorname, ObjectPtr(selectedVector()), true);
 #endif


More information about the Kst mailing list