Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/winmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,21 +606,21 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR lpszCmdLine, int)
customParam = getParamVal('p', lpszCmdLine);
}

// Object (gupParams) is moved here because we need app icon form configuration file
GupParameters gupParams("gup.xml");
appIconFile = gupParams.getSoftwareIcon();
try {
// Object (gupParams) is moved here because we need app icon form configuration file
GupParameters gupParams("gup.xml");
appIconFile = gupParams.getSoftwareIcon();

if (isHelp)
{
::MessageBoxA(NULL, MSGID_HELP, "GUP Command Argument Help", MB_OK);
return 0;
}
if (isHelp)
{
::MessageBoxA(NULL, MSGID_HELP, "GUP Command Argument Help", MB_OK);
return 0;
}

GupExtraOptions extraOptions("gupOptions.xml");
GupNativeLang nativeLang("nativeLang.xml");
GupExtraOptions extraOptions("gupOptions.xml");
GupNativeLang nativeLang("nativeLang.xml");

hInst = hInstance;
try {
hInst = hInstance;
if (launchSettingsDlg)
{
if (extraOptions.hasProxySettings())
Expand Down