Fixed printf-related warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61073 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2009-06-15 23:27:04 +00:00
parent 0f5fe33282
commit f81bd28859

View File

@@ -1475,8 +1475,12 @@ bool wxVariantDataLongLong::Write(wxSTD ostream& str) const
bool wxVariantDataLongLong::Write(wxString& str) const bool wxVariantDataLongLong::Write(wxString& str) const
{ {
str.Printf(wxS("%lld"), m_value); #ifdef wxLongLong_t
str.Printf(wxS("%lld"), m_value.GetValue());
return true; return true;
#else
return false;
#endif
} }
#if wxUSE_STD_IOSTREAM #if wxUSE_STD_IOSTREAM
@@ -1632,8 +1636,12 @@ bool wxVariantDataULongLong::Write(wxSTD ostream& str) const
bool wxVariantDataULongLong::Write(wxString& str) const bool wxVariantDataULongLong::Write(wxString& str) const
{ {
str.Printf(wxS("%llu"), m_value); #ifdef wxLongLong_t
str.Printf(wxS("%llu"), m_value.GetValue());
return true; return true;
#else
return false;
#endif
} }
#if wxUSE_STD_IOSTREAM #if wxUSE_STD_IOSTREAM