]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/misc/misctests.cpp
Fix wxFont test compilation after wxFont(int flags) ctor removal.
[wxWidgets.git] / tests / misc / misctests.cpp
index fed7b1e4ff7164d8799658adbc5acc3157489f63..d50f0a2460dd519c91658ac42a7dda1104a82df1 100644 (file)
@@ -115,17 +115,21 @@ bool IsNull(void *p)
 
 void MiscTestCase::StaticCast()
 {
+#if wxUSE_TARSTREAM
     wxTarEntry tarEntry;
     CPPUNIT_ASSERT( wxStaticCast(&tarEntry, wxArchiveEntry) );
 
     wxArchiveEntry *entry = &tarEntry;
     CPPUNIT_ASSERT( wxStaticCast(entry, wxTarEntry) );
 
+#if wxUSE_ZIPSTREAM
     wxZipEntry zipEntry;
     entry = &zipEntry;
     CPPUNIT_ASSERT( wxStaticCast(entry, wxZipEntry) );
+    WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) );
+#endif // wxUSE_ZIPSTREAM
 
     WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(entry, wxTarEntry)) );
-    WX_ASSERT_FAILS_WITH_ASSERT( IsNull(wxStaticCast(&zipEntry, wxTarEntry)) );
+#endif // wxUSE_TARSTREAM
 }