Fix #1132 by passing segment IDs, not segment instances
[pulseview.git] / pv / data / signalbase.hpp
index 6a3af14b3f0115c64dee8f1438fc21accfc37168..47c593fac7f364423d46e81697771d186c8ec7a0 100644 (file)
@@ -140,6 +140,12 @@ public:
         */
        QString internal_name() const;
 
+       /**
+        * Produces a string for this signal that can be used for display,
+        * i.e. it contains one or both of the signal/internal names.
+        */
+       QString display_name() const;
+
        /**
         * Sets the name of the signal.
         */
@@ -291,7 +297,7 @@ Q_SIGNALS:
 
        void samples_cleared();
 
-       void samples_added(QObject* segment, uint64_t start_sample,
+       void samples_added(uint64_t segment_id, uint64_t start_sample,
                uint64_t end_sample);
 
        void min_max_changed(float min, float max);