]> sigrok.org Git - pulseview.git/commitdiff
Whitespace fix
authorSoeren Apel <redacted>
Tue, 16 Feb 2016 20:14:12 +0000 (21:14 +0100)
committerSoeren Apel <redacted>
Tue, 16 Feb 2016 20:14:12 +0000 (21:14 +0100)
pv/data/decode/decoder.cpp
pv/data/decode/rowdata.cpp
pv/data/decoderstack.cpp
pv/widgets/wellarray.cpp

index 374dd4d360c9bf8bca84f544eaf04892395c9888..1513b20be5cb70156db3dfe33c43c8c0e4fd594b 100644 (file)
@@ -44,7 +44,7 @@ Decoder::Decoder(const srd_decoder *const dec) :
 
 Decoder::~Decoder()
 {
-       for (auto & option : options_)
+       for (auto& option : options_)
                g_variant_unref(option.second);
 }
 
@@ -102,7 +102,7 @@ bool Decoder::have_required_channels() const
 set< shared_ptr<pv::data::Logic> > Decoder::get_data()
 {
        set< shared_ptr<pv::data::Logic> > data;
-       for (const auto & channel : channels_) {
+       for (const auto& channel : channels_) {
                shared_ptr<view::LogicSignal> signal(channel.second);
                assert(signal);
                data.insert(signal->logic_data());
@@ -116,7 +116,7 @@ srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session) const
        GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
                g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
 
-       for (const auto & option : options_) {
+       for (const auto& option : options_) {
                GVariant *const value = option.second;
                g_variant_ref(value);
                g_hash_table_replace(opt_hash, (void*)g_strdup(
@@ -134,7 +134,7 @@ srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session) const
        GHashTable *const channels = g_hash_table_new_full(g_str_hash,
                g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
 
-       for (const auto & channel : channels_) {
+       for (const auto& channel : channels_) {
                shared_ptr<view::LogicSignal> signal(channel.second);
                GVariant *const gvar = g_variant_new_int32(
                        signal->channel()->index());
index e7d82fd72c5a77713980f1f7e6c69b714a4c59cb..c8d68df6cb317a1bcdefd778bee970bf4b1f0e29 100644 (file)
@@ -41,7 +41,7 @@ void RowData::get_annotation_subset(
        vector<pv::data::decode::Annotation> &dest,
        uint64_t start_sample, uint64_t end_sample) const
 {
-       for (const auto & annotation : annotations_)
+       for (const auto& annotation : annotations_)
                if (annotation.end_sample() > start_sample &&
                        annotation.start_sample() <= end_sample)
                        dest.push_back(annotation);
index b79326d83363ed70efa20580a62bdf4068dcddbe..441ff3c3df9f327a5ce25f80759eebd11073eac2 100644 (file)
@@ -272,7 +272,7 @@ uint64_t DecoderStack::max_sample_count() const
 {
        uint64_t max_sample_count = 0;
 
-       for (const auto & row : rows_)
+       for (const auto& row : rows_)
                max_sample_count = max(max_sample_count,
                        row.second.get_max_sample());
 
index 1351467a122a7bc8c5bcd36e23ef7fd4192a6638..3ae6eec6305b1eb696bb55affcf070a71d5790dc 100644 (file)
@@ -125,7 +125,7 @@ void WellArray::paintCell(QPainter* p, int row, int col, const QRect &rect)
 {
     int b = 3; //margin
 
-    const QPalette & g = palette();
+    const QPalette& g = palette();
     QStyleOptionFrame opt;
     int dfw = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
     opt.lineWidth = dfw;