Skip to content

Commit

Permalink
Update MS SQL browser node items
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Dec 13, 2015
1 parent 61b7a9c commit 805d9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/mssql/qgsmssqldataitems.cpp
Expand Up @@ -300,11 +300,11 @@ QList<QAction*> QgsMssqlConnectionItem::actions()
connect( actionShowNoGeom, SIGNAL( toggled( bool ) ), this, SLOT( setAllowGeometrylessTables( bool ) ) );
lst.append( actionShowNoGeom );

QAction* actionEdit = new QAction( tr( "Edit..." ), this );
QAction* actionEdit = new QAction( tr( "Edit Connection..." ), this );
connect( actionEdit, SIGNAL( triggered() ), this, SLOT( editConnection() ) );
lst.append( actionEdit );

QAction* actionDelete = new QAction( tr( "Delete" ), this );
QAction* actionDelete = new QAction( tr( "Delete Connection" ), this );
connect( actionDelete, SIGNAL( triggered() ), this, SLOT( deleteConnection() ) );
lst.append( actionDelete );

Expand Down

0 comments on commit 805d9d4

Please sign in to comment.