homescreenapp/stateplugins/hsapplibrarystateplugin/tsrc/inc/t_hsproxymodeltestmockmodel.h
changeset 97 66b5fe3c07fd
parent 90 3ac3aaebaee5
--- a/homescreenapp/stateplugins/hsapplibrarystateplugin/tsrc/inc/t_hsproxymodeltestmockmodel.h	Mon Sep 27 11:52:00 2010 +0300
+++ b/homescreenapp/stateplugins/hsapplibrarystateplugin/tsrc/inc/t_hsproxymodeltestmockmodel.h	Wed Oct 06 16:06:24 2010 +0300
@@ -32,13 +32,13 @@
 
     virtual QModelIndex index(int, int,
         const QModelIndex &parent = QModelIndex()) const {
-    	Q_UNUSED(parent);
+        Q_UNUSED(parent);
         return QModelIndex();
     }
     virtual QVariant data(const QModelIndex &,
                               int role = Qt::DisplayRole) const {
-    	Q_UNUSED(role);
-    	return QVariant(mEntryId);
+        Q_UNUSED(role);
+        return QVariant(mEntryId);
     }
 
     const CaEntry *entry(const QModelIndex &index) const;
@@ -48,5 +48,4 @@
     int mEntryId;
 };
 
-
 #endif