-rw-r--r-- | library/global.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/library/global.cpp b/library/global.cpp index 5c89430..90954fe 100644 --- a/library/global.cpp +++ b/library/global.cpp | |||
@@ -192,50 +192,52 @@ static QString dictDir() | |||
192 | The execute() function runs an application. | 192 | The execute() function runs an application. |
193 | 193 | ||
194 | \section1 Word list related | 194 | \section1 Word list related |
195 | 195 | ||
196 | A list of words relevant to the current locale is maintained by the | 196 | A list of words relevant to the current locale is maintained by the |
197 | system. The list is held in a \link qdawg.html DAWG\endlink | 197 | system. The list is held in a \link qdawg.html DAWG\endlink |
198 | (implemented by the QDawg class). This list is used, for example, by | 198 | (implemented by the QDawg class). This list is used, for example, by |
199 | the pickboard input method. | 199 | the pickboard input method. |
200 | 200 | ||
201 | The global QDawg is returned by fixedDawg(); this cannot be updated. | 201 | The global QDawg is returned by fixedDawg(); this cannot be updated. |
202 | An updatable copy of the global QDawg is returned by addedDawg(). | 202 | An updatable copy of the global QDawg is returned by addedDawg(). |
203 | Applications may have their own word lists stored in \l{QDawg}s | 203 | Applications may have their own word lists stored in \l{QDawg}s |
204 | which are returned by dawg(). Use addWords() to add words to the | 204 | which are returned by dawg(). Use addWords() to add words to the |
205 | updateable copy of the global QDawg or to named application | 205 | updateable copy of the global QDawg or to named application |
206 | \l{QDawg}s. | 206 | \l{QDawg}s. |
207 | 207 | ||
208 | \section1 Quoting | 208 | \section1 Quoting |
209 | 209 | ||
210 | The shellQuote() function quotes a string suitable for passing to a | 210 | The shellQuote() function quotes a string suitable for passing to a |
211 | shell. The stringQuote() function backslash escapes '\' and '"' | 211 | shell. The stringQuote() function backslash escapes '\' and '"' |
212 | characters. | 212 | characters. |
213 | 213 | ||
214 | \section1 Hardware | 214 | \section1 Hardware |
215 | 215 | ||
216 | The writeHWClock() function sets the hardware clock to the system | 216 | The implementation of the writeHWClock() function depends on the AlarmServer |
217 | clock's date and time. | 217 | implementation. If the AlarmServer is using atd the clock will be synced to |
218 | hardware. If opie-alarm is used the hardware clock will be synced before | ||
219 | suspending the device. opie-alarm is used by iPAQ and Zaurii implementation | ||
218 | 220 | ||
219 | \ingroup qtopiaemb | 221 | \ingroup qtopiaemb |
220 | */ | 222 | */ |
221 | 223 | ||
222 | /*! | 224 | /*! |
223 | \internal | 225 | \internal |
224 | */ | 226 | */ |
225 | Global::Global() | 227 | Global::Global() |
226 | { | 228 | { |
227 | } | 229 | } |
228 | 230 | ||
229 | /*! | 231 | /*! |
230 | Returns the unchangeable QDawg that contains general | 232 | Returns the unchangeable QDawg that contains general |
231 | words for the current locale. | 233 | words for the current locale. |
232 | 234 | ||
233 | \sa addedDawg() | 235 | \sa addedDawg() |
234 | */ | 236 | */ |
235 | const QDawg& Global::fixedDawg() | 237 | const QDawg& Global::fixedDawg() |
236 | { | 238 | { |
237 | if ( !fixed_dawg ) { | 239 | if ( !fixed_dawg ) { |
238 | if ( !docDirCreated ) | 240 | if ( !docDirCreated ) |
239 | createDocDir(); | 241 | createDocDir(); |
240 | 242 | ||
241 | fixed_dawg = new QDawg; | 243 | fixed_dawg = new QDawg; |