Code polish

This commit is contained in:
nathan 2017-07-03 15:28:47 +02:00
parent bdb62dad4e
commit 8ed5a9df80

View File

@ -414,7 +414,7 @@ class GtkTheme {
// see if we can get the info via CSS properties (> GTK+ 3.2 uses an API, GTK2 gets it from disk). // see if we can get the info via CSS properties (> GTK+ 3.2 uses an API, GTK2 gets it from disk).
// This is often the BEST way to get information, since GTK **DOES NOT** make it easy to get widget information BEFORE // This is often the BEST way to get information, since GTK **DOES NOT** make it easy to get widget information BEFORE
// the widget is realized -- which in our case, we must do. // the widget is realized -- which in our case, we must do.
c = getFromCss(); c = getColorFromCss();
if (c != null) { if (c != null) {
if (DEBUG) { if (DEBUG) {
System.err.println("Got from CSS"); System.err.println("Got from CSS");
@ -565,7 +565,7 @@ class GtkTheme {
* @return the color string, parsed from CSS, * @return the color string, parsed from CSS,
*/ */
private static private static
Color getFromCss() { Color getColorFromCss() {
Css css = getCss(); Css css = getCss();
if (css != null) { if (css != null) {
if (DEBUG_SHOW_CSS) { if (DEBUG_SHOW_CSS) {