Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Homogenize window title separator #36998

Conversation

elpaso
Copy link
Contributor

@elpaso elpaso commented Jun 5, 2020

Fixes #35761

@elpaso elpaso added Bug Either a bug report, or a bug fix. Let's hope for the latter! GUI/UX Related to QGIS application GUI or User Experience labels Jun 5, 2020
@github-actions github-actions bot added this to the 3.14.0 milestone Jun 5, 2020
@@ -547,7 +547,7 @@ static void setTitleBarText_( QWidget &qgisApp )
}
if ( !caption.isEmpty() )
{
caption += QLatin1String( " - " );
caption += QStringLiteral( " " );
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This results in corrupt strings on windows builds... You need to use the character code instead

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure (like for the three dots) I guess. But let me ask you a questions, is there anything particular in this line of code or should we change the other 27 occurrences of that character, because I just copy-pasted that character from one of the many other another pre-existing string in the code and I don't understand why it suddenly became a problem after my changes if it wasn't before.

$ grep -r '—' src|egrep 'cpp:'|wc -l
27

... or maybe you are just saying that it is always been a problem but this is an opportunity to fix it?

Copy link
Contributor Author

@elpaso elpaso Jun 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see it's been used mostly inside tr:

QObject::tr( "Warning — this algorithm modifies......

does that need replacing too?

or is it just when it is inside a QStringLiteral ?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's fine when it's inside tr, and it's fine from Python -- it's only QStringLiteral and raw characters strings which are an issue. That said, this may have changed since #35737. I'd probably still err on the side of caution though!

@nyalldawson nyalldawson merged commit c9121f7 into qgis:master Jun 7, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Either a bug report, or a bug fix. Let's hope for the latter! GUI/UX Related to QGIS application GUI or User Experience
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Omogenize window title
2 participants