Skip to content

Commit

Permalink
Rename lblList to lblDirectory (to match cbx)
Browse files Browse the repository at this point in the history
  • Loading branch information
pljones committed Sep 21, 2024
1 parent 4722312 commit 7417be9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/connectdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ CConnectDlg::CConnectDlg ( CClientSettings* pNSetP, const bool bNewShowCompleteR
QString strDirectoryWT = "<b>" + tr ( "Directory" ) + ":</b> " +
tr ( "Shows the servers listed by the selected directory. "
"You can add custom directories in Advanced Settings." );
QString strDirectoryAN = tr ( "Directory combo box" );

lblList->setWhatsThis ( strDirectoryWT );
lblList->setToolTip ( strDirectoryWT );
lblList->setAccessibleName ( strDirectoryAN );
lblDirectory->setWhatsThis ( strDirectoryWT );
lblDirectory->setToolTip ( strDirectoryWT );
cbxDirectory->setWhatsThis ( strDirectoryWT );
cbxDirectory->setToolTip ( strDirectoryWT );

QString strDirectoryAN = tr ( "Directory combo box" );
lblDirectory->setAccessibleName ( strDirectoryAN );
cbxDirectory->setAccessibleName ( strDirectoryAN );

// filter
Expand Down
2 changes: 1 addition & 1 deletion src/connectdlgbase.ui
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<number>0</number>
</property>
<item>
<widget class="QLabel" name="lblList">
<widget class="QLabel" name="lblDirectory">
<property name="text">
<string>Directory</string>
</property>
Expand Down

0 comments on commit 7417be9

Please sign in to comment.