Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
moved decorations problem (seems related to metacity) to the right pl…
…ace and did (hopefully) the right thing with it

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10439 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
macho committed Mar 28, 2009
1 parent 34a7070 commit 247b556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/plugin.cpp
Expand Up @@ -148,7 +148,7 @@ void QgsGeorefPlugin::run()
// QgsGeorefPluginGui *myPluginGui = new QgsGeorefPluginGui( mQGisIface, QgsGeorefPluginGui::findMainWindow(), Qt::Window | Qt::WindowMinimizeButtonHint);
// myPluginGui->show();
// myPluginGui->setFocus();
QgsPointDialog *myPlugin = new QgsPointDialog( mQGisIface, QgsPointDialog::findMainWindow(), Qt::Window | Qt::WindowMinimizeButtonHint );
QgsPointDialog *myPlugin = new QgsPointDialog( mQGisIface, QgsPointDialog::findMainWindow(), Qt::Window | Qt::WindowMinimizeButtonHint | Qt::WindowTitleHint );
myPlugin->move( 0, 0 );
myPlugin->show();
myPlugin->setFocus();
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgspointdialog.cpp
Expand Up @@ -82,7 +82,7 @@ QgsPointDialog::QgsPointDialog( QString layerPath, QgisInterface* theQgisInterfa
openImageFile( layerPath );
}

QgsPointDialog::QgsPointDialog( QgisInterface* theQgisInterface, QWidget* parent, Qt::WFlags fl ): QDialog( parent ), mLayer( 0 ), mIface( theQgisInterface ), mAcetateCounter( 0 )
QgsPointDialog::QgsPointDialog( QgisInterface* theQgisInterface, QWidget* parent, Qt::WFlags fl ): QDialog( parent, fl ), mLayer( 0 ), mIface( theQgisInterface ), mAcetateCounter( 0 )
{
initialize();
}
Expand Down

0 comments on commit 247b556

Please sign in to comment.