Rename ol.style.SymbolizerLiteral to ol.style.Literal

This commit is contained in:
Tim Schaub
2013-08-12 11:46:58 -04:00
parent a12d41b1bc
commit 90fb37c220
9 changed files with 24 additions and 24 deletions
+3 -3
View File
@@ -6,7 +6,7 @@ goog.require('ol.expr');
goog.require('ol.expr.Expression');
goog.require('ol.expr.Literal');
goog.require('ol.style.Symbolizer');
goog.require('ol.style.SymbolizerLiteral');
goog.require('ol.style.Literal');
/**
@@ -22,7 +22,7 @@ ol.style.TextLiteralOptions;
/**
* @constructor
* @extends {ol.style.SymbolizerLiteral}
* @extends {ol.style.Literal}
* @param {ol.style.TextLiteralOptions} options Text literal options.
*/
ol.style.TextLiteral = function(options) {
@@ -48,7 +48,7 @@ ol.style.TextLiteral = function(options) {
this.opacity = options.opacity;
};
goog.inherits(ol.style.TextLiteral, ol.style.SymbolizerLiteral);
goog.inherits(ol.style.TextLiteral, ol.style.Literal);
/**