Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use 'New Connection...' instead of 'New...' for browser data items
  • Loading branch information
NathanW2 committed Mar 24, 2012
1 parent efe5966 commit aa2d0b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/providers/mssql/qgsmssqldataitems.cpp
Expand Up @@ -526,7 +526,7 @@ QList<QAction*> QgsMssqlRootItem::actions()
{
QList<QAction*> lst;

QAction* actionNew = new QAction( tr( "New..." ), this );
QAction* actionNew = new QAction( tr( "New Connection..." ), this );
connect( actionNew, SIGNAL( triggered() ), this, SLOT( newConnection() ) );
lst.append( actionNew );

Expand Down
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsdataitems.cpp
Expand Up @@ -139,7 +139,7 @@ QList<QAction*> QgsWFSRootItem::actions()
{
QList<QAction*> lst;

QAction* actionNew = new QAction( tr( "New..." ), this );
QAction* actionNew = new QAction( tr( "New Connection..." ), this );
connect( actionNew, SIGNAL( triggered() ), this, SLOT( newConnection() ) );
lst.append( actionNew );

Expand Down
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmsdataitems.cpp
Expand Up @@ -216,7 +216,7 @@ QList<QAction*> QgsWMSRootItem::actions()
{
QList<QAction*> lst;

QAction* actionNew = new QAction( tr( "New..." ), this );
QAction* actionNew = new QAction( tr( "New Connection..." ), this );
connect( actionNew, SIGNAL( triggered() ), this, SLOT( newConnection() ) );
lst.append( actionNew );

Expand Down

0 comments on commit aa2d0b8

Please sign in to comment.