Applied some of the SGI fixes. Don't know about the
toolbar one. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5626 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -75,7 +75,8 @@ wxDateTime& wxDateTime::Set(time_t timet)
|
||||
|
||||
wxDateTime& wxDateTime::SetToCurrent()
|
||||
{
|
||||
return *this = Now();
|
||||
*this = Now();
|
||||
return *this;
|
||||
}
|
||||
|
||||
#if (!(defined(__VISAGECPP__) && __IBMCPP__ >= 400))
|
||||
|
@@ -591,7 +591,9 @@ wxLongLongWx& wxLongLongWx::operator/=(const wxLongLongWx& ll)
|
||||
|
||||
Divide(ll, quotient, remainder);
|
||||
|
||||
return *this = quotient;
|
||||
*this = quotient;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
wxLongLongWx wxLongLongWx::operator%(const wxLongLongWx& ll) const
|
||||
|
@@ -566,7 +566,7 @@ wxDialUpManagerImpl::CheckIfconfig(void)
|
||||
|| strstr(output,"sl") // slip
|
||||
|| strstr(output,"pl"); // plip
|
||||
#elif defined(__SGI__) // IRIX
|
||||
rc = strstr(output, "ppp"); // PPP
|
||||
rc = (int) strstr(output, "ppp"); // PPP
|
||||
#elif defined(__HPUX__)
|
||||
// if could run ifconfig on interface, then it exists
|
||||
rc = TRUE;
|
||||
|
Reference in New Issue
Block a user