279 title += " [debug build]"; |
279 title += " [debug build]"; |
280 #elif BUILD_ID != BUILD_RELEASE |
280 #elif BUILD_ID != BUILD_RELEASE |
281 title += " [pre-release build]"; |
281 title += " [pre-release build]"; |
282 #endif // DEBUG |
282 #endif // DEBUG |
283 |
283 |
284 #ifdef COMPILE_DATE |
284 if (compileTimeString()[0] != '\0') |
285 title += " (built " COMPILE_DATE ")"; |
285 title += format (" (built %1)", compileTimeString()); |
286 #endif // COMPILE_DATE |
|
287 |
286 |
288 setWindowTitle (title); |
287 setWindowTitle (title); |
289 } |
288 } |
290 |
289 |
291 // ============================================================================= |
290 // ============================================================================= |