Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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/qgis@5463 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed May 16, 2006
1 parent e1c9ab1 commit 3071824
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 3071824

Please sign in to comment.