Browse Source

Eliminate placeholder warnings on console. Fixes #95

Neal Wilson 11 years ago
parent
commit
311d98516d
2 changed files with 6 additions and 6 deletions
  1. 3
    3
      config/Windows/newbatch.xml
  2. 3
    3
      config/Windows/productionroaster.xml

+ 3
- 3
config/Windows/newbatch.xml View File

@@ -66,7 +66,7 @@
66 66
 			var newMenu = findChildObject(this, 'new');
67 67
 			newMenu.triggered.connect(function() {
68 68
 				var bwindow = createWindow("batchWindow");
69
-				bwindow.windowTitle = "Typica - New Batch";
69
+				bwindow.windowTitle = "Typica - [*]New Batch";
70 70
 			});
71 71
 			var batch = this;
72 72
 			var table = findChildObject(this, 'greens');
@@ -139,7 +139,7 @@
139 139
                 {
140 140
                     profilebutton.setEnabled(false);
141 141
                 }
142
-                var title = "Typica - New Batch (";
142
+                var title = "Typica - [*]New Batch (";
143 143
                 title = title + roasted.currentText;
144 144
                 title = title + ")";
145 145
                 batch.windowTitle = title;
@@ -233,7 +233,7 @@
233 233
 					}
234 234
 				}
235 235
                 query = query.invalidate();
236
-				navigationwindow.loggingWindow.windowTitle = "Typica - " + pname;
236
+				navigationwindow.loggingWindow.windowTitle = "Typica - [*]" + pname;
237 237
 				navigationwindow.loggingWindow.raise();
238 238
 				navigationwindow.loggingWindow.activateWindow();
239 239
 				input.input();

+ 3
- 3
config/Windows/productionroaster.xml View File

@@ -699,7 +699,7 @@
699 699
         clear.triggered.connect(log.clear);
700 700
         clear.triggered.connect(graph.clear);
701 701
         clear.triggered.connect(function() {
702
-            window.windowTitle = "Typica";
702
+            window.windowTitle = "Typica [*]";
703 703
 			log.setHeaderData(0, "Time");
704 704
             QSettings.setValue("liveColumn", 1);
705 705
 			window.postLoadColumnSetup(0);
@@ -759,7 +759,7 @@
759 759
 					window.postLoadColumnSetup(c);
760 760
 				});
761 761
                 input.input();
762
-                window.windowTitle = 'Typica - ' + baseName(filename);
762
+                window.windowTitle = 'Typica - [*]' + baseName(filename);
763 763
                 QSettings.setValue("script/lastDir", dir(filename));
764 764
 				log.newAnnotation("End", 1, lc);
765 765
             }
@@ -831,7 +831,7 @@
831 831
         var newMenu = findChildObject(this, 'new');
832 832
         newMenu.triggered.connect(function() {
833 833
             var bwindow = createWindow("batchWindow");
834
-            bwindow.windowTitle = "Typica - New Batch";
834
+            bwindow.windowTitle = "Typica - [*]New Batch";
835 835
         });
836 836
 		window.postLoadColumnSetup(0);
837 837
 		]]>

Loading…
Cancel
Save