We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 297d0bd commit 06d38c1Copy full SHA for 06d38c1
src/gui/qgsnewhttpconnection.cpp
@@ -29,6 +29,9 @@ QgsNewHttpConnection::QgsNewHttpConnection(
29
{
30
setupUi( this );
31
32
+ QString service = baseKey.mid( 18, 3 ).toUpper();
33
+ setWindowTitle( tr( "Create a new %1 connection" ).arg( service ) );
34
+
35
// It would be obviously much better to use mBaseKey also for credentials,
36
// but for some strange reason a different hardcoded key was used instead.
37
// WFS and WMS credentials were mixed with the same key WMS.
@@ -65,7 +68,8 @@ QgsNewHttpConnection::QgsNewHttpConnection(
65
68
// Adjust height
66
69
int w = width();
67
70
adjustSize();
- resize(w, height());
71
+ resize( w, height() );
72
73
}
74
75
on_txtName_textChanged( connName );
0 commit comments