git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61073
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool wxVariantDataLongLong::Write(wxString& str) const
{
- str.Printf(wxS("%lld"), m_value);
+#ifdef wxLongLong_t
+ str.Printf(wxS("%lld"), m_value.GetValue());
return true;
+#else
+ return false;
+#endif
}
#if wxUSE_STD_IOSTREAM
bool wxVariantDataULongLong::Write(wxString& str) const
{
- str.Printf(wxS("%llu"), m_value);
+#ifdef wxLongLong_t
+ str.Printf(wxS("%llu"), m_value.GetValue());
return true;
+#else
+ return false;
+#endif
}
#if wxUSE_STD_IOSTREAM