diff --git a/Telegram/SourceFiles/historywidget.h b/Telegram/SourceFiles/historywidget.h index e7766f49c..66ef491e3 100644 --- a/Telegram/SourceFiles/historywidget.h +++ b/Telegram/SourceFiles/historywidget.h @@ -200,7 +200,7 @@ public: // \xcc[\xb3\xbf\x8a] // 819, 831, 778 // QString bad1 = QString::fromUtf8("\xcc\xb3"), bad2 = QString::fromUtf8("\xcc\xbf"), bad3 = QString::fromUtf8("\xcc\x8a"); // [\x00\x01\x02\x07\x08\x0b-\x1f] // '\t' = 0x09 - return (code >= 0x00 && code <= 0x02) || (code >= 0x07 && code <= 0x09) || (code >= 0x0b && code <= 0x1f) || + return (/*code >= 0x00 && */code <= 0x02) || (code >= 0x07 && code <= 0x09) || (code >= 0x0b && code <= 0x1f) || (code == 819) || (code == 831) || (code == 778) || (code >= 8232 && code <= 8237); } diff --git a/Telegram/Telegram.pro b/Telegram/Telegram.pro index 13b036d28..015f65eca 100644 --- a/Telegram/Telegram.pro +++ b/Telegram/Telegram.pro @@ -125,7 +125,6 @@ SOURCES += \ ./SourceFiles/gui/boxshadow.cpp \ ./SourceFiles/gui/button.cpp \ ./SourceFiles/gui/contextmenu.cpp \ - ./SourceFiles/gui/countrycodeinput.cpp \ ./SourceFiles/gui/countryinput.cpp \ ./SourceFiles/gui/emoji_config.cpp \ ./SourceFiles/gui/filedialog.cpp \ @@ -219,7 +218,6 @@ HEADERS += \ ./SourceFiles/gui/boxshadow.h \ ./SourceFiles/gui/button.h \ ./SourceFiles/gui/contextmenu.h \ - ./SourceFiles/gui/countrycodeinput.h \ ./SourceFiles/gui/countryinput.h \ ./SourceFiles/gui/emoji_config.h \ ./SourceFiles/gui/filedialog.h \