Skip to content
Permalink
Browse files
Make the spit window a Qt::Window instead of a Qt::Dialog. This may
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.
@@ -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();
}

0 comments on commit e8c22b4

Please sign in to comment.