Fixed compilation error introduced by 0cd514de

This commit is contained in:
Damien GERARD 2015-07-15 14:17:48 +02:00
parent 23cd144198
commit 4d0597136c
1 changed files with 4 additions and 3 deletions

View File

@ -34,12 +34,13 @@ const TCHAR* nppName = TEXT("Notepad++_file");
const TCHAR* nppBackup = TEXT("Notepad++_backup");
const TCHAR* nppDoc = TEXT("Notepad++ Document");
const int nbSupportedLang = 9;
const int nbExtMax = 10;
const int nbSupportedLang = 10;
const int nbExtMax = 27;
const int extNameMax = 18;
TCHAR defExtArray[nbSupportedLang][nbExtMax][extNameMax] = {
const TCHAR defExtArray[nbSupportedLang][nbExtMax][extNameMax] =
{
{TEXT("Notepad"),
TEXT(".txt"), TEXT(".log")
},