Skip to content

Commit 0f638fc

Browse files
committedJul 15, 2013
added oracle raster, sql anywhere icons. Conform colors for raster icon
1 parent de1a982 commit 0f638fc

File tree

9 files changed

+596
-11
lines changed

9 files changed

+596
-11
lines changed
 

‎images/themes/default/mActionAddRasterLayer.svg

Lines changed: 5 additions & 5 deletions

Error rendering embedded code

Invalid image source.

-1.09 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<RCC>
22
<qresource prefix="/oracleplugin/" >
3-
<file>oracleplugin.png</file>
3+
<file>oracleraster.svg</file>
44
</qresource>
55
</RCC>
Lines changed: 347 additions & 0 deletions

Error rendering embedded code

Invalid image source.

‎src/plugins/oracle_raster/qgsoracle_plugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static const QString sDescription = QObject::tr( "Access Oracle Spatial GeoRaste
2323
static const QString sCategory = QObject::tr( "Layers" );
2424
static const QString sPluginVersion = QObject::tr( "Version 0.1" );
2525
static const QgisPlugin::PLUGINTYPE sPluginType = QgisPlugin::UI;
26-
static const QString sPluginIcon = ":/oracleplugin/oracleplugin.png";
26+
static const QString sPluginIcon = ":/oracleplugin/oracleraster.svg";
2727

2828
//////////////////////////////////////////////////////////////////////
2929
//
@@ -54,7 +54,7 @@ QgsOraclePlugin::~QgsOraclePlugin()
5454
void QgsOraclePlugin::initGui()
5555
{
5656
// Create the action for tool
57-
mQActionPointer = new QAction( QIcon( ":/oracleplugin/oracleplugin.png" ), tr( "Add Oracle GeoRaster Layer..." ), this );
57+
mQActionPointer = new QAction( QIcon( ":/oracleplugin/oracleraster.svg" ), tr( "Add Oracle GeoRaster Layer..." ), this );
5858
// Set the what's this text
5959
mQActionPointer->setWhatsThis( tr( "Add a Oracle Spatial GeoRaster..." ) );
6060
// Connect the action to the run

‎src/plugins/sqlanywhere/sqlanywhere.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static const QString sDescription = QObject::tr( "Store vector layers within a S
5050
static const QString sCategory = QObject::tr( "Layers" );
5151
static const QString sPluginVersion = QObject::tr( "Version 0.1" );
5252
static const QgisPlugin::PLUGINTYPE sPluginType = QgisPlugin::UI;
53-
static const QString sIcon = ":/sqlanywhere/sqlanywhere.png";
53+
static const QString sIcon = ":/sqlanywhere/sqlanywhere.svg";
5454

5555

5656
/**
@@ -79,7 +79,7 @@ SqlAnywhere::~SqlAnywhere()
7979
void SqlAnywhere::initGui()
8080
{
8181
// Create the action for tool
82-
mActionAddSqlAnywhereLayer = new QAction( QIcon( ":/sqlanywhere/sqlanywhere.png" ), tr( "Add SQL Anywhere Layer..." ), this );
82+
mActionAddSqlAnywhereLayer = new QAction( QIcon( ":/sqlanywhere/sqlanywhere.svg" ), tr( "Add SQL Anywhere Layer..." ), this );
8383
mActionAddSqlAnywhereLayer->setWhatsThis( tr( "Store vector layers within a SQL Anywhere database" ) );
8484
connect( mActionAddSqlAnywhereLayer, SIGNAL( triggered() ), this, SLOT( addSqlAnywhereLayer() ) );
8585

-1.66 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<RCC>
22
<qresource prefix="/sqlanywhere/" >
3-
<file>sqlanywhere.png</file>
3+
<file>sqlanywhere.svg</file>
44
</qresource>
55
</RCC>
Lines changed: 238 additions & 0 deletions

Error rendering embedded code

Invalid image source.

0 commit comments

Comments
 (0)
Please sign in to comment.