IdeTitle.diff
| ide/ide.cpp (kopia robocza) | ||
|---|---|---|
| 5 | 5 |
String title; |
| 6 | 6 |
if(!main.IsEmpty()) |
| 7 | 7 |
title << main; |
| 8 |
if(mainconfigname == mainconfigparam) |
|
| 8 |
if(!mainconfigname.IsEmpty() && mainconfigname == mainconfigparam)
|
|
| 9 | 9 |
title << " - " << mainconfigname; |
| 10 | 10 |
else |
| 11 | 11 |
if(!mainconfigname.IsEmpty()) {
|
| 12 | 12 |
title << " - " << mainconfigname; |
| 13 | 13 |
title << " ( " << mainconfigparam << " )"; |
| 14 | 14 |
} |
| 15 |
title << " - TheIDE"; |
|
| 15 |
if(!title.IsEmpty()) |
|
| 16 |
title << " - "; |
|
| 17 |
title << "TheIDE"; |
|
| 16 | 18 |
if(designer) {
|
| 17 | 19 |
title << " - [" << designer->GetFileName(); |
| 18 | 20 |
int cs = designer->GetCharset(); |