Fix some spelling mistakes (mostly in comments).
[dcpomatic.git] / src / wx / about_dialog.h
index 5e895490898fe054d161cb25db3d04745a3aae2b..f9b60ccc62350651bdf9ed304d6639de46818b63 100644 (file)
  *  @brief The "about DCP-o-matic" dialogue box.
  */
 
+
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
 
 class wxNotebook;
 
+
 /** @class AboutDialog
  *  @brief The "about DCP-o-matic" dialogue box.
  */
 class AboutDialog : public wxDialog
 {
 public:
-       AboutDialog (wxWindow *);
+       explicit AboutDialog (wxWindow *);
 
 private:
        void add_section (wxString, wxArrayString);
 
        wxNotebook* _notebook; ///< notebook used to keep each list of names for the credits
 };
-