Skip to content

Commit

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

git-svn-id: http://svn.osgeo.org/qgis/trunk@10439 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
macho committed Mar 28, 2009
1 parent fa4aa1f commit 674cb95
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 674cb95

Please sign in to comment.