From 5868cf9b34280551afa4845e87338a5ddc1ad073 Mon Sep 17 00:00:00 2001 From: xavier Date: Fri, 25 May 2012 08:57:15 +0000 Subject: [PATCH] Fixed a forgotten slash. git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1862 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/qetapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/qetapp.cpp b/sources/qetapp.cpp index 55ebca244..7cc852ec6 100644 --- a/sources/qetapp.cpp +++ b/sources/qetapp.cpp @@ -535,7 +535,7 @@ QStringList QETApp::handledFileExtensions() { if (!ext.count()) { ext << "qet"; ext << "elmt"; - ext << QString(TITLEBLOCKS_FILE_EXTENSION).remove(QRegExp("^\.")); + ext << QString(TITLEBLOCKS_FILE_EXTENSION).remove(QRegExp("^\\.")); } return(ext); }