]> sigrok.org Git - pulseview.git/commitdiff
DecodeTrace: Removed text_height_
authorJoel Holdsworth <redacted>
Sat, 20 Dec 2014 10:51:38 +0000 (10:51 +0000)
committerJoel Holdsworth <redacted>
Sun, 28 Dec 2014 18:52:53 +0000 (18:52 +0000)
pv/view/decodetrace.cpp
pv/view/decodetrace.hpp

index 745cf29b297f8835128740afd2cd6c9643d0bc07..be2dadf11a0023a5cc1bce1204b71ad1a7a43d8f 100644 (file)
@@ -129,7 +129,6 @@ DecodeTrace::DecodeTrace(pv::Session &session,
                decoder_stack->stack().front()->decoder()->name)),
        session_(session),
        decoder_stack_(decoder_stack),
-       text_height_(0),
        row_height_(0),
        delete_mapper_(this),
        show_hide_mapper_(this)
@@ -174,9 +173,9 @@ void DecodeTrace::paint_mid(QPainter &p, const ViewItemPaintParams &pp)
 {
        using namespace pv::data::decode;
 
-       text_height_ = ViewItemPaintParams::text_height();
-       row_height_ = (text_height_ * 6) / 4;
-       const int annotation_height = (text_height_ * 5) / 4;
+       const int text_height = ViewItemPaintParams::text_height();
+       row_height_ = (text_height * 6) / 4;
+       const int annotation_height = (text_height * 5) / 4;
 
        assert(decoder_stack_);
        const QString err = decoder_stack_->error_message();
index edf3205b530479993cd96209af523ea48eea6353..968ebf9569672a92e76640bc7a88039603a235ee 100644 (file)
@@ -198,7 +198,7 @@ private:
        std::vector<pv::widgets::DecoderGroupBox*> decoder_forms_;
 
        std::vector<data::decode::Row> visible_rows_;
-       int text_height_, row_height_;
+       int row_height_;
 
        QSignalMapper delete_mapper_, show_hide_mapper_;
 };