summaryrefslogtreecommitdiff
path: root/doc/pluginhowto
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-05-31 15:53:35 +0000
committerTobias Hunger <tobias.hunger@nokia.com>2011-06-01 16:24:54 +0200
commit652454a8324ce60f2b23a06eb74c38bd4afcfde3 (patch)
treed5aaf2259a666613ee34a4318596d4936cbd7772 /doc/pluginhowto
parentcc2829fc6aa15e3d9fe353e95584ccb8a7abef7a (diff)
downloadqt-creator-652454a8324ce60f2b23a06eb74c38bd4afcfde3.tar.gz
encoding: Make sure all text files are utf8 encoded
Change-Id: Ib83224b24026c29158e8df8fa235cf5050390555 Reviewed-on: http://codereview.qt.nokia.com/281 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'doc/pluginhowto')
-rw-r--r--doc/pluginhowto/editor-type.qdoc4
-rw-r--r--doc/pluginhowto/project-file-wizard.qdoc2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/pluginhowto/editor-type.qdoc b/doc/pluginhowto/editor-type.qdoc
index d877d39bf2..e3f600bc0a 100644
--- a/doc/pluginhowto/editor-type.qdoc
+++ b/doc/pluginhowto/editor-type.qdoc
@@ -34,7 +34,7 @@
\section2 10.1.1 The Core::IFile interface
This interface abstracts file operations from the user-interface point of view. It provides virtual methods to load and
- save files, given a file name. It also helps in understanding the mime-type of file and value of certain flags like “modified”
+ save files, given a file name. It also helps in understanding the mime-type of file and value of certain flags like "modified"
and "read-only". The \bold{Core::IFile} interface is declared as follows in src/plugins/coreplugin/ifile.h
\code
@@ -77,7 +77,7 @@
actual disk-file contents have not been modified. \bold {QFile} emits the \bold {bytesWritten()} signal only when the
disk-file contents have been modified.
- \o \bold {IFile} has to handle how a modified file, on the disk, is reloaded. \bold {QFile} on the other-hand doesn’t need to
+ \o \bold {IFile} has to handle how a modified file, on the disk, is reloaded. \bold {QFile} on the other-hand doesn't need to
handle this.
\endlist
diff --git a/doc/pluginhowto/project-file-wizard.qdoc b/doc/pluginhowto/project-file-wizard.qdoc
index 69c663df8a..621fd6ea47 100644
--- a/doc/pluginhowto/project-file-wizard.qdoc
+++ b/doc/pluginhowto/project-file-wizard.qdoc
@@ -480,7 +480,7 @@
}
\endcode
- The \bold{readFile()} method is implemented to read a file and return its contents as a string. Before returning the file’s
+ The \bold{readFile()} method is implemented to read a file and return its contents as a string. Before returning the file's
contents as string, the function uses the replacement table passed as second parameter to fix the string.
\code