]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dpycmn.cpp
Silence warning about truncation since the comment says it ok
[wxWidgets.git] / src / common / dpycmn.cpp
index 81a2a8e85c73eec17f0a30a6576f407b49a34fe9..f5d398867bb6303c172f48f22cb4a1e73082c307 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma implementation "displaybase.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -33,7 +29,7 @@
 #if wxUSE_DISPLAY
 
 #include "wx/arrimpl.cpp"
-WX_DEFINE_OBJARRAY(wxArrayVideoModes);
+WX_DEFINE_OBJARRAY(wxArrayVideoModes)
 
 const wxVideoMode wxDefaultVideoMode;
 
@@ -44,7 +40,7 @@ const wxVideoMode wxDefaultVideoMode;
 wxDisplayBase::wxDisplayBase(size_t index)
              : m_index (index)
 {
-    wxASSERT_MSG( m_index >= 0 && m_index < GetCount(),
+    wxASSERT_MSG( m_index < GetCount(),
                     wxT("An invalid index was passed to wxDisplay") );
 }