src/hbcore/inputfw/hbinputpredictioncallback.h
changeset 1 f7ac710697a9
parent 0 16d8024aca5e
child 6 c3690ec91ef8
--- a/src/hbcore/inputfw/hbinputpredictioncallback.h	Mon Apr 19 14:02:13 2010 +0300
+++ b/src/hbcore/inputfw/hbinputpredictioncallback.h	Mon May 03 12:48:33 2010 +0300
@@ -32,7 +32,7 @@
 @proto
 @hbcore
 \class HbPredictionCallback
-\brief A callback method for prediction engine API.  
+\brief A callback method for prediction engine API.
 
 This callback class can be delivered as a parameter for various prediction engine API methods.
 When it is given, the prediction engine can use it for querying editor buffer contents and
@@ -43,13 +43,13 @@
 class HbPredictionCallback
 {
 public:
-    virtual ~HbPredictionCallback() {}    
+    virtual ~HbPredictionCallback() {}
 
     virtual QString surroundingText() = 0;
     virtual int cursorPosition() = 0;
     virtual QList<HbKeyPressProbability> probableKeypresses()
     {
-    return QList<HbKeyPressProbability>();
+        return QList<HbKeyPressProbability>();
     }
 };