diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 21:55:01 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-25 21:55:01 +0000 |
commit | d77cfd0576c0818284c9cf10eedb8185339323d1 (patch) | |
tree | f9cdef8463f003406b7526b511dfab02c0cc553a /plugins/CountryFlags/src/options.cpp | |
parent | 14b4c0ec4a43189f97078673b387a5c448156b74 (diff) |
CoutryFlags - common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13154 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CountryFlags/src/options.cpp')
-rw-r--r-- | plugins/CountryFlags/src/options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CountryFlags/src/options.cpp b/plugins/CountryFlags/src/options.cpp index f87979b172..ed8c02eb7f 100644 --- a/plugins/CountryFlags/src/options.cpp +++ b/plugins/CountryFlags/src/options.cpp @@ -17,13 +17,13 @@ along with this program (Flags-License.txt); if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "flags.h"
+#include "stdafx.h"
bool bUseUnknown, bShowStatusIcon, bShowExtraIcon, bUseIpToCountry;
#define M_ENABLE_SUBCTLS (WM_APP+1)
-static INT_PTR CALLBACK ExtraImgOptDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM lParam)
+static INT_PTR CALLBACK ExtraImgOptDlgProc(HWND hwndDlg,UINT msg,WPARAM,LPARAM lParam)
{
switch(msg) {
case WM_INITDIALOG:
@@ -80,7 +80,7 @@ static INT_PTR CALLBACK ExtraImgOptDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,L return FALSE;
}
-int OnOptionsInit(WPARAM wParam, LPARAM lParam)
+int OnOptionsInit(WPARAM wParam, LPARAM)
{
OPTIONSDIALOGPAGE odp = { 0 };
odp.hInstance = hInst;
|