Make member variable underscores a suffix instead of a prefix
[pulseview.git] / pv / view / cursor.h
index 290365e8ff3e28f9a5ee9b00f4237d8785b29130..649230ce56dfe7807400fe98ca0628f20bd07e5d 100644 (file)
@@ -23,7 +23,7 @@
 
 #include "timemarker.h"
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 #include <QSizeF>
 
@@ -74,10 +74,10 @@ public:
 private:
        void compute_text_size(QPainter &p, unsigned int prefix);
 
-       boost::shared_ptr<Cursor> get_other_cursor() const;
+       std::shared_ptr<Cursor> get_other_cursor() const;
 
 private:
-       QSizeF _text_size;
+       QSizeF text_size_;
 };
 
 } // namespace view