X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fwidgets%2Fdecodermenu.cpp;h=28b54babdfb9aad3c0e67e2a732b22ac79cbe918;hp=7da77bd3bb08c922bd47d95e9fad480b07fab30f;hb=46ebcd3f6f85092a9eb6401f6f56cee8fa08131a;hpb=2ad82c2e40b6865481733913a2c32735602f63c4 diff --git a/pv/widgets/decodermenu.cpp b/pv/widgets/decodermenu.cpp index 7da77bd3..28b54bab 100644 --- a/pv/widgets/decodermenu.cpp +++ b/pv/widgets/decodermenu.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -31,9 +30,9 @@ DecoderMenu::DecoderMenu(QWidget *parent, bool first_level_decoder) : QMenu(parent), mapper_(this) { - GSList *l = g_slist_sort(g_slist_copy( + GSList *li = g_slist_sort(g_slist_copy( (GSList*)srd_decoder_list()), decoder_name_cmp); - for (; l; l = l->next) { + for (GSList *l = li; l; l = l->next) { const srd_decoder *const d = (srd_decoder*)l->data; assert(d); @@ -47,7 +46,7 @@ DecoderMenu::DecoderMenu(QWidget *parent, bool first_level_decoder) : &mapper_, SLOT(map())); } } - g_slist_free(l); + g_slist_free(li); connect(&mapper_, SIGNAL(mapped(QObject*)), this, SLOT(on_action(QObject*))); @@ -66,8 +65,8 @@ void DecoderMenu::on_action(QObject *action) (srd_decoder*)((QAction*)action)->data().value(); assert(dec); - decoder_selected(dec); + decoder_selected(dec); } -} // widgets -} // pv +} // namespace widgets +} // namespace pv