summaryrefslogtreecommitdiffstats
path: root/src/printsupport/kernel/qprinterinfo_p.h
diff options
context:
space:
mode:
authorJohn Layt <jlayt@kde.org>2013-11-25 20:36:58 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-26 18:45:10 +0100
commitdb4afbef7d1e2405a3b8f007e9009f509b4a3eac (patch)
tree443b4405a5d7c464e7b9e15b75a7268a91c8bf34 /src/printsupport/kernel/qprinterinfo_p.h
parent42fa59b151eb4a6fecbe5b5672112c9f78b856a9 (diff)
QPrinterInfo - Fix isNull() by fixing constructors
The QPrinterInfo copy and QPrinter constructors and the assignment operator were not taking the shared_null into account, and so any use of them resulted in a new null QPrinterInfo different to shared_null, which lead to isNull() always returning true in anything other than the simplest use case. While fixing this also make the shared_null a Q_GLOBAL_STATIC. Task-number: QTBUG-21087 Change-Id: I0beb24088208e9ed58d21ca26b0c8d00b02e5b8f Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
Diffstat (limited to 'src/printsupport/kernel/qprinterinfo_p.h')
-rw-r--r--src/printsupport/kernel/qprinterinfo_p.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/printsupport/kernel/qprinterinfo_p.h b/src/printsupport/kernel/qprinterinfo_p.h
index d4bb08f1f5..6ae64b5653 100644
--- a/src/printsupport/kernel/qprinterinfo_p.h
+++ b/src/printsupport/kernel/qprinterinfo_p.h
@@ -72,8 +72,6 @@ public:
~QPrinterInfoPrivate()
{}
- static QPrinterInfoPrivate shared_null;
-
QString name;
QString description;
QString location;
@@ -87,17 +85,6 @@ public:
mutable QList<QPair<QString, QSizeF> > paperNames;
};
-
-class QPrinterInfoPrivateDeleter
-{
-public:
- static inline void cleanup(QPrinterInfoPrivate *d)
- {
- if (d != &QPrinterInfoPrivate::shared_null)
- delete d;
- }
-};
-
QT_END_NAMESPACE
#endif // QT_NO_PRINTER