1. many, many, many warnings fixed (from HP-UX build log; 50% are still left)

2. attempt (failed) at compiling wxGTK with GTK+ 1.3.0


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5152 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-12-30 17:51:26 +00:00
parent ce6d2511f8
commit 13111b2ac8
36 changed files with 703 additions and 630 deletions

View File

@@ -279,7 +279,7 @@ wxLongLongWx& wxLongLongWx::operator-=(const wxLongLongWx& ll)
if (previous < ll.m_lo)
m_hi--;
return *this;;
return *this;
}
// pre decrement
@@ -571,14 +571,14 @@ void *wxLongLongWx::asArray(void) const
{
static unsigned char temp[8];
temp[0] = (m_hi >> 24) & 0xFF;
temp[1] = (m_hi >> 16) & 0xFF;
temp[2] = (m_hi >> 8) & 0xFF;
temp[3] = (m_hi >> 0) & 0xFF;
temp[4] = (m_lo >> 24) & 0xFF;
temp[5] = (m_lo >> 16) & 0xFF;
temp[6] = (m_lo >> 8) & 0xFF;
temp[7] = (m_lo >> 0) & 0xFF;
temp[0] = (char)((m_hi >> 24) & 0xFF);
temp[1] = (char)((m_hi >> 16) & 0xFF);
temp[2] = (char)((m_hi >> 8) & 0xFF);
temp[3] = (char)((m_hi >> 0) & 0xFF);
temp[4] = (char)((m_lo >> 24) & 0xFF);
temp[5] = (char)((m_lo >> 16) & 0xFF);
temp[6] = (char)((m_lo >> 8) & 0xFF);
temp[7] = (char)((m_lo >> 0) & 0xFF);
return temp;
}