summaryrefslogtreecommitdiffstats
path: root/examples/webkit
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2010-10-25 14:43:36 (GMT)
committerRohan McGovern <rohan.mcgovern@nokia.com>2010-10-25 14:43:36 (GMT)
commit61f013168e5ef5111948a1ae0a1464753986adb2 (patch)
treee3049989fbe75d6bae27e45c387f9f5fc5b4a961 /examples/webkit
parent3baea03b43f5221328ab16f05f3fbdcab222eae8 (diff)
downloadQt-61f013168e5ef5111948a1ae0a1464753986adb2.zip
Qt-61f013168e5ef5111948a1ae0a1464753986adb2.tar.gz
Qt-61f013168e5ef5111948a1ae0a1464753986adb2.tar.bz2
Fixed spelling.
trys -> tries
Diffstat (limited to 'examples/webkit')
-rw-r--r--examples/webkit/imageanalyzer/imageanalyzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/webkit/imageanalyzer/imageanalyzer.cpp b/examples/webkit/imageanalyzer/imageanalyzer.cpp
index 1d0ee45..9f49a00 100644
--- a/examples/webkit/imageanalyzer/imageanalyzer.cpp
+++ b/examples/webkit/imageanalyzer/imageanalyzer.cpp
@@ -49,7 +49,7 @@
* This class operates as follows:
* Parent calls the slot startAnalysis which shoves a list of QStrings into URLQueue and then calls fetchURLs.
* FetchURLs sends out HTTP GETs for each image it can't get out of the cache.
- * As the responses come in, handleReply trys to create an image out of each and pushes those images into imageQueue.
+ * As the responses come in, handleReply tries to create an image out of each and pushes those images into imageQueue.
* On the last (detected by no outstandingFetches and URLQueue.isEmpty()) call to queueImage (from handleReply)
* a thread is forked to process all the images. When it finishes, it emits a finished signal that is received
* by our JavaScript code.