Skip to content
Permalink
Browse files
register QgsDetailedItemData meta type; fixes plugin manager and gras…
…s toolbox

git-svn-id: http://svn.osgeo.org/qgis/trunk@8796 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jul 16, 2008
1 parent 21186af commit b1a7dc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
@@ -91,6 +91,7 @@ QgsPluginManager::QgsPluginManager(QgsPythonUtils* pythonUtils, QWidget * parent
// connect the slot up to catch when a bookmark is zoomed to
connect(btnClearAll, SIGNAL(clicked()), this, SLOT(clearAll()));

qRegisterMetaType<QgsDetailedItemData>();
}


@@ -106,6 +106,7 @@ QgsGrassTools::QgsGrassTools ( QgisInterface *iface,
#ifdef QGISDEBUG
std::cerr << "QgsGrassTools()" << std::endl;
#endif
qRegisterMetaType<QgsDetailedItemData>();

setWindowTitle ( tr("GRASS Tools") );
// setupUi(this);
@@ -120,7 +121,7 @@ QgsGrassTools::QgsGrassTools ( QgisInterface *iface,
// Radims original tree view code.
//
mModulesTree->header()->hide();
connect( mModulesTree, SIGNAL(itemClicked(QTreeWidgetItem *, int)),
connect( mModulesTree, SIGNAL(itemClicked(QTreeWidgetItem *, int)),
this, SLOT(moduleClicked( QTreeWidgetItem *, int)) );


0 comments on commit b1a7dc1

Please sign in to comment.