summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/html2pdf/html2pdf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/webenginewidgets/html2pdf/html2pdf.cpp')
-rw-r--r--examples/webenginewidgets/html2pdf/html2pdf.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/webenginewidgets/html2pdf/html2pdf.cpp b/examples/webenginewidgets/html2pdf/html2pdf.cpp
index e767cf7db..1c9e5f607 100644
--- a/examples/webenginewidgets/html2pdf/html2pdf.cpp
+++ b/examples/webenginewidgets/html2pdf/html2pdf.cpp
@@ -8,9 +8,7 @@
#include <QWebEngineView>
#include <functional>
-
-using namespace std;
-using namespace std::placeholders;
+#include <utility>
class Html2PdfConverter : public QObject
{
@@ -30,8 +28,8 @@ private:
};
Html2PdfConverter::Html2PdfConverter(QString inputPath, QString outputPath)
- : m_inputPath(move(inputPath))
- , m_outputPath(move(outputPath))
+ : m_inputPath(std::move(inputPath))
+ , m_outputPath(std::move(outputPath))
, m_view(new QWebEngineView)
{
connect(m_view.data(), &QWebEngineView::loadFinished,