BuildLogViewer/BuildStatus.h
changeset 2 6894bf2709c0
parent 1 8e9c5760ce6f
child 3 e6d1a78b6db9
--- a/BuildLogViewer/BuildStatus.h	Wed Sep 02 19:04:26 2009 -0700
+++ b/BuildLogViewer/BuildStatus.h	Thu Sep 03 16:31:30 2009 -0700
@@ -10,15 +10,15 @@
     BuildStatus(QObject *parent = 0);
 
     void setName(QString n);
-    QString name();
+    const QString *name();
 
     void setTime(QDateTime w);
-    QString Time();
+    QString time();
 
-    void setStatus (bool n ) { m_status = n ; } ;
+    void setStatus (bool n );
+    const QString *status();
 
-
-
+private:
     // What was the name of the package?
     QString *m_packageName;
     // At this time, the symbain build log doesn't have a timestamp in it.
@@ -26,6 +26,7 @@
     QDateTime m_when;
     // Did the build succeed?
     bool m_status;
+    QString *m_PresentStatus;
 };
 
 #endif // BUILDSTATUS_H