]> sigrok.org Git - pulseview.git/blobdiff - pv/dialogs/storeprogress.hpp
Use nullptr in a few places.
[pulseview.git] / pv / dialogs / storeprogress.hpp
index e968ce4197c3e0e04da7d5d9050f9a511784251d..48e1239dd033ba648a8caaa2f2280668f7e5cf56 100644 (file)
 
 #include <pv/storesession.hpp>
 
+using std::map;
+using std::pair;
+using std::shared_ptr;
+using std::string;
+
 namespace pv {
 
 class Session;
@@ -39,11 +44,11 @@ class StoreProgress : public QProgressDialog
 
 public:
        StoreProgress(const QString &file_name,
-               const std::shared_ptr<sigrok::OutputFormat> output_format,
-               const std::map<std::string, Glib::VariantBase> &options,
-               const std::pair<uint64_t, uint64_t> sample_range,
+               const shared_ptr<sigrok::OutputFormat> output_format,
+               const map<string, Glib::VariantBase> &options,
+               const pair<uint64_t, uint64_t> sample_range,
                const Session &session,
-               QWidget *parent = 0);
+               QWidget *parent = nullptr);
 
        virtual ~StoreProgress();