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

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

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

Loading…
Cancel
Save