diff data/model/Model.h @ 1429:48e9f538e6e9

Untabify
author Chris Cannam
date Thu, 01 Mar 2018 18:02:22 +0000
parents e994747fb9dd
children b40f67578976
line wrap: on
line diff
--- a/data/model/Model.h	Thu Mar 01 14:43:40 2018 +0000
+++ b/data/model/Model.h	Thu Mar 01 18:02:22 2018 +0000
@@ -33,7 +33,7 @@
  */
 
 class Model : public QObject,
-	      public XmlExportable,
+              public XmlExportable,
               public Playable
 {
     Q_OBJECT
@@ -125,9 +125,9 @@
      * getCompletion().
      */
     virtual bool isReady(int *completion = 0) const {
-	bool ok = isOK();
-	if (completion) *completion = (ok ? 100 : 0);
-	return ok;
+        bool ok = isOK();
+        if (completion) *completion = (ok ? 100 : 0);
+        return ok;
     }
     static const int COMPLETION_UNKNOWN;