Don't classify constants with "static" which is misleading and not supported

This commit is contained in:
Rico Tzschichholz 2016-06-09 11:28:33 +02:00
parent 4c94f2c66e
commit 063bf0fb41
2 changed files with 5 additions and 5 deletions

View File

@ -27,10 +27,10 @@ namespace Gala
*/
public class IconGroup : Actor
{
public static const int SIZE = 64;
public const int SIZE = 64;
static const int PLUS_SIZE = 8;
static const int PLUS_WIDTH = 24;
const int PLUS_SIZE = 8;
const int PLUS_WIDTH = 24;
const int SHOW_CLOSE_BUTTON_DELAY = 200;

View File

@ -27,8 +27,8 @@ namespace Gala
*/
public class IconGroupContainer : Actor
{
public static const int SPACING = 48;
public static const int GROUP_WIDTH = 64;
public const int SPACING = 48;
public const int GROUP_WIDTH = 64;
public signal void request_reposition ();