]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/progdlgg.cpp
Fixed a crash when deleting the last timer
[wxWidgets.git] / src / generic / progdlgg.cpp
index 46d94c98b9e1426ebc6fb669f3fb17d4d86d8d17..c261d63be45df5eac446c180fa214d1935fdad83 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma implementation "progdlgg.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -145,7 +141,7 @@ wxProgressDialog::wxProgressDialog(wxString const &title,
 
     wxClientDC dc(this);
     dc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
-    long widthText;
+    long widthText = 0;
     dc.GetTextExtent(message, &widthText, NULL, NULL, NULL, NULL);
 
     wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);