Skip to content

Commit

Permalink
Version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TricksterGuy authored Dec 18, 2022
1 parent 57276f8 commit 891631f
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions src/gui/PicrossApp.cpp
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
/******************************************************************************************************
* Picross
* Copyright (C) 2009-2020 Brandon Whitehead (tricksterguy87[AT]gmail[DOT]com)
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* excluding commercial applications, and to alter it and redistribute it freely,
* subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented;
* you must not claim that you wrote the original software.
* An acknowledgement in your documentation and link to the original version is required.
*
* 2. Altered source versions must be plainly marked as such,
* and must not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source distribution.
/******************************************************************************************************
* Picross
* Copyright (C) 2009-2020 Brandon Whitehead (tricksterguy87[AT]gmail[DOT]com)
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* excluding commercial applications, and to alter it and redistribute it freely,
* subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented;
* you must not claim that you wrote the original software.
* An acknowledgement in your documentation and link to the original version is required.
*
* 2. Altered source versions must be plainly marked as such,
* and must not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source distribution.
******************************************************************************************************/

#include "PicrossApp.hpp"
#include "PicrossFrame.hpp"
#include <wx/config.h>
#include "PicrossApp.hpp"
#include "PicrossFrame.hpp"
#include <wx/config.h>
#include <wx/dialog.h>

#include "PicrossValidator.hpp"
Expand All @@ -31,7 +31,7 @@
#endif
#include "PicrossFactory.hpp"

constexpr const char* FULL_VERSION_STRING = "0.2";
constexpr const char* FULL_VERSION_STRING = "0.3";

IMPLEMENT_APP(PicrossApp);

Expand Down Expand Up @@ -69,8 +69,8 @@ bool PicrossApp::OnInit()
{
if (!wxApp::OnInit())
return false;

wxInitAllImageHandlers();

wxInitAllImageHandlers();

if (args.silent)
return RunExport();
Expand Down Expand Up @@ -261,5 +261,5 @@ bool PicrossApp::OnCmdLineParsed(wxCmdLineParser& parser)
args.background_type = valid_background_type->second;

return true;
}

}

0 comments on commit 891631f

Please sign in to comment.