Skip to content

Commit 120b5b6

Browse files
committed
duplicate check
1 parent 1c7e153 commit 120b5b6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

dialogs/world_prefs/aliasdlg.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,7 @@ void CAliasDlg::DoDataExchange(CDataExchange* pDX)
171171
if (m_bRegexp)
172172
{
173173
if (!CheckRegularExpression (m_name, (m_bIgnoreCase ? 0 : PCRE_CASELESS)
174-
| (m_pDoc->m_bUTF_8 ? PCRE_UTF8 : 0)
175-
#if ALIASES_USE_UTF8
176-
| (m_pDoc->m_bUTF_8 ? PCRE_UTF8 : 0)
177-
#endif // ALIASES_USE_UTF8
178-
174+
| (m_pDoc->m_bUTF_8 ? PCRE_UTF8 : 0)
179175
))
180176
{ // failed check
181177
DDX_Text(pDX, IDC_ALIAS_NAME, m_name);

0 commit comments

Comments
 (0)