changeset 364:ad60da87378d

Only very small textual changes. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@588 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Tue, 15 Jan 2008 14:43:59 +0000
parents 262e3e12b9c9
children 836e08b6e310
files README.txt src/uiguisettings.cpp src/uiguisettings.h
diffstat 3 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt	Tue Jan 15 14:28:39 2008 +0000
+++ b/README.txt	Tue Jan 15 14:43:59 2008 +0000
@@ -38,7 +38,7 @@
 The portable mode is being used, if the sub dir "indenters" is found in the same dir as the executable. Thats the case for the before named binary archives.
 
 3.2 Multiuser mode
-Espacially Unix based systems strictly make use of user restrictments, but also Windows can be used that way, even if many dislike that due to lack of comfort. To be able to run UniversalIndentGUI on multiuser systems the needed files are spread over different directories. On Unix based these are:
+Especially Unix based systems strictly make use of user restrictments, but also Windows can be used that way, even if many dislike that due to lack of comfort. To be able to run UniversalIndentGUI on multiuser systems the needed files are spread over different directories. On Unix based these are:
 /usr/bin  for the binary.
 /etc/UniversalIndentGUI  for global configuration and the essential indenter ini files.
 /usr/share/man/man1  for the zipped man page.
--- a/src/uiguisettings.cpp	Tue Jan 15 14:28:39 2008 +0000
+++ b/src/uiguisettings.cpp	Tue Jan 15 14:43:59 2008 +0000
@@ -17,7 +17,7 @@
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/
 
-#include "uiguisettings.h"
+#include "uiguisettings.h"
 
 //! \defgroup grp_Settings All concerning the settings.
 
@@ -39,8 +39,8 @@
     else {
         qsettings = new QSettings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(), QCoreApplication::applicationName(), this);
     }
-
-    this->globalFilesDirectoryStr = globalFilesDirectoryStr;
+
+    this->globalFilesDirectoryStr = globalFilesDirectoryStr;
     this->portableMode = portableMode;
     indenterDirctoryStr = globalFilesDirectoryStr + "/indenters";
 	readAvailableTranslations();
@@ -70,7 +70,7 @@
 
 	// Find all translation files in the "translations" directory.
 	QDir translationDirectory = QDir( globalFilesDirectoryStr + "/translations" );
-	languageFileList << translationDirectory.entryList( QStringList("universalindent_*.qm") );
+	languageFileList << translationDirectory.entryList( QStringList("universalindent_*.qm") );
 
 	// Loop for each found translation file
 	foreach ( languageShort, languageFileList ) {
--- a/src/uiguisettings.h	Tue Jan 15 14:28:39 2008 +0000
+++ b/src/uiguisettings.h	Tue Jan 15 14:43:59 2008 +0000
@@ -84,9 +84,9 @@
 
 	//! This map holds all possible settings defined by their name as QString. The value is of the type QVariant.
 	QMap<QString, QVariant> settings;
-
+
     QString globalFilesDirectoryStr;
-    QString indenterDirctoryStr;
+    QString indenterDirctoryStr;
     bool portableMode;
 };