X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fwidgets%2Fexportmenu.cpp;h=721affe058e9a359579b8caabf43485ffb99625b;hb=fe94bf8255145410d1673880932d59573c829b0e;hp=13c977d50cda7cedc8f72dd19f9e2599ca2cc56f;hpb=6f925ba9d6faf1077b73c5a5808259576081716a;p=pulseview.git diff --git a/pv/widgets/exportmenu.cpp b/pv/widgets/exportmenu.cpp index 13c977d5..721affe0 100644 --- a/pv/widgets/exportmenu.cpp +++ b/pv/widgets/exportmenu.cpp @@ -63,14 +63,14 @@ ExportMenu::ExportMenu(QWidget *parent, shared_ptr context, const map > formats = context->output_formats(); - for (const pair > &f : formats) { + for (const pair > &f : formats) { if (f.first == "srzip") continue; assert(f.second); QAction *const action = addAction(tr("Export %1...") .arg(QString::fromStdString(f.second->description()))); - action->setData(qVariantFromValue((void*)f.second.get())); + action->setData(QVariant::fromValue((void*)f.second.get())); mapper_.setMapping(action, action); connect(action, SIGNAL(triggered()), &mapper_, SLOT(map())); } @@ -95,5 +95,5 @@ void ExportMenu::on_action(QObject *action) format_selected((*iter).second); } -} // widgets -} // pv +} // namespace widgets +} // namespace pv