Skip to content
Permalink
Browse files
icon updates & drop xpm in favour of qt resource
git-svn-id: http://svn.osgeo.org/qgis/trunk@8906 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Jul 25, 2008
1 parent bcefd5c commit 9a1f10e
Show file tree
Hide file tree
Showing 6 changed files with 214 additions and 78 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -1,5 +1,5 @@
<RCC>
<qresource prefix="/new/prefix1" >
<qresource prefix="/" >
<file>delimited_text.png</file>
</qresource>
</RCC>

This file was deleted.

@@ -37,8 +37,6 @@
//the gui subclass
#include "qgsdelimitedtextplugingui.h"

// xpm for creating the toolbar icon
#include "icon.xpm"
//

static const QString pluginVersion = QObject::tr("Version 0.2");
@@ -98,7 +96,7 @@ void QgsDelimitedTextPlugin::help()
void QgsDelimitedTextPlugin::initGui()
{
// Create the action for tool
myQActionPointer = new QAction(QIcon(icon), tr("&Add Delimited Text Layer"), this);
myQActionPointer = new QAction(QIcon(":/delimited_text.png"), tr("&Add Delimited Text Layer"), this);

myQActionPointer->setWhatsThis(tr("Add a delimited text file as a map layer. ")+
tr("The file must have a header row containing the field names. ")+

0 comments on commit 9a1f10e

Please sign in to comment.