Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Replace New with 'New Connection' in browser context menu
New... implied creating a new spatiaLite database, which is not the
case.
  • Loading branch information
NathanW2 committed Feb 29, 2012
1 parent b75b8b7 commit 991f3d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresdataitems.cpp
Expand Up @@ -269,7 +269,7 @@ QList<QAction*> QgsPGRootItem::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/spatialite/qgsspatialitedataitems.cpp
Expand Up @@ -253,7 +253,7 @@ QList<QAction*> QgsSLRootItem::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 991f3d3

Please sign in to comment.