From 6476ac738ca029af95932f53b53f0705808eb80e Mon Sep 17 00:00:00 2001 From: "Bradley T. Hughes" Date: Thu, 29 Sep 2011 11:50:08 +0200 Subject: Replace implicit QAtomic* casts with explicit load()/store() Change-Id: Ia7ef1a8e01001f203e409c710c977d6f4686342e Reviewed-by: Thiago Macieira --- src/gui/text/qrawfont_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui/text/qrawfont_p.h') diff --git a/src/gui/text/qrawfont_p.h b/src/gui/text/qrawfont_p.h index 1f2e957906..992cb2f720 100644 --- a/src/gui/text/qrawfont_p.h +++ b/src/gui/text/qrawfont_p.h @@ -84,7 +84,7 @@ public: ~QRawFontPrivate() { - Q_ASSERT(ref == 0); + Q_ASSERT(ref.load() == 0); cleanUp(); } -- cgit v1.2.3