Skip to content

Commit

Permalink
Make the spit window a Qt::Window instead of a Qt::Dialog. This may
Browse files Browse the repository at this point in the history
fix ticket #74 - can you test this Tim? In any case, it now gives the
spit dialog an entry in the taskbar so that it can easily be brought
back to the front.


git-svn-id: http://svn.osgeo.org/qgis/trunk@5463 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed May 16, 2006
1 parent d665c4f commit e8c22b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/spit/qgsspitplugin.cpp
Expand Up @@ -84,7 +84,7 @@ void QgsSpitPlugin::initGui()
// Slot called when the shapefile to postgres menu item is activated
void QgsSpitPlugin::spit()
{
QgsSpit *spitDlg = new QgsSpit();
QgsSpit *spitDlg = new QgsSpit(qgisMainWindow, Qt::Window);
spitDlg->show();
}

Expand Down

0 comments on commit e8c22b4

Please sign in to comment.