]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filesys.cpp
correct idle tag type; remove unneeded includes
[wxWidgets.git] / src / common / filesys.cpp
index 44e265776bcd8bd534c700ef530ca31261b342ca..405598e9c2aca71d01dbfe54cae8f2741a51f9f3 100644 (file)
@@ -484,7 +484,7 @@ void wxFileSystem::AddHandler(wxFileSystemHandler *handler)
 {
     // prepend the handler to the beginning of the list because handlers added
     // last should have the highest priority to allow overriding them
-    m_Handlers.Insert(0u, handler);
+    m_Handlers.Insert((size_t)0, handler);
 }
 
 bool wxFileSystem::HasHandlerForPath(const wxString &location)