From 4244c20bf5347a453568adca86876a210bb68256 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Mon, 26 Aug 2002 22:54:25 +0000 Subject: [PATCH] Fixed warnings due to use of %d for long int params in function wxNativeFontInfo::ToString() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16799 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/font.cpp b/src/msw/font.cpp index 918e7c06d2..c1d032c476 100644 --- a/src/msw/font.cpp +++ b/src/msw/font.cpp @@ -635,7 +635,7 @@ wxString wxNativeFontInfo::ToString() const { wxString s; - s.Printf(_T("%d;%d;%d;%d;%d;%d;%d;%d;%d;%d;%d;%d;%d;%d;%s"), + s.Printf(_T("%d;%ld;%ld;%ld;%ld;%ld;%d;%d;%d;%d;%d;%d;%d;%d;%s"), 0, // version, in case we want to change the format later lf.lfHeight, lf.lfWidth, -- 2.50.0