This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16.
View the commit online.
commit 54b2f3f8894df9d9403d1c1af491b8b95fcb9c2f
Author: Kim Woelders <[email protected]>
AuthorDate: Mon Mar 23 07:39:02 2026 +0100
menus: Remove definitions for horizontal menus
No theme has ever used them, AFAIK.
---
config/definitions | 24 ------------------------
src/conf.h | 3 +--
src/menus.c | 1 -
3 files changed, 1 insertion(+), 27 deletions(-)
diff --git a/config/definitions b/config/definitions
index 130d24f3..10ee6caa 100644
--- a/config/definitions
+++ b/config/definitions
@@ -347,7 +347,6 @@
#define __ITEM_ICLASS 701
#define __SUBMENU_ICLASS 702
#define __USE_ITEM_BACKGROUNDS 703
-#define __MAXIMUM_NUMBER_OF_COLUMNS 704
#define __MAXIMUM_NUMBER_OF_ROWS 705
#define __STYLE 706
#define __MENU_ITEM 707
@@ -654,18 +653,6 @@ __MENU_STYLE __BGN;\
__MAXIMUM_NUMBER_OF_ROWS max_items;\
__END
-#define NORMAL_MENU_STYLE_HORIZONTAL(name, border, tclass, bg_iclass, item_iclass, submenu_iclass, max_items) \
-__MENU_STYLE __BGN;\
- __NAME name;\
- __BORDER border;\
- __TCLASS tclass;\
- __BG_ICLASS bg_iclass;\
- __ITEM_ICLASS item_iclass;\
- __SUBMENU_ICLASS submenu_iclass;\
- __USE_ITEM_BACKGROUNDS __OFF;\
- __MAXIMUM_NUMBER_OF_COLUMNS max_items;\
-__END
-
#define NEXTSTEP_MENU_STYLE_VERTICAL(name, border, tclass, item_iclass, submenu_iclass, max_items) \
__MENU_STYLE __BGN;\
__NAME name;\
@@ -677,17 +664,6 @@ __MENU_STYLE __BGN;\
__MAXIMUM_NUMBER_OF_ROWS max_items;\
__END
-#define NEXTSTEP_MENU_STYLE_HORIZONTAL(name, border, tclass, item_iclass, submenu_iclass, max_items) \
-__MENU_STYLE __BGN;\
- __NAME name;\
- __BORDER border;\
- __TCLASS tclass;\
- __ITEM_ICLASS item_iclass;\
- __SUBMENU_ICLASS submenu_iclass;\
- __USE_ITEM_BACKGROUNDS __ON;\
- __MAXIMUM_NUMBER_OF_COLUMNS max_items;\
-__END
-
#define BEGIN_NEW_MENU(name, style) \
__MENU __BGN;\
__NAME name;\
diff --git a/src/conf.h b/src/conf.h
index dede9195..839f660f 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
- * Copyright (C) 2004-2020 Kim Woelders
+ * Copyright (C) 2004-2026 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
@@ -165,7 +165,6 @@
#define MENU_ITEM_ICLASS 701
#define MENU_SUBMENU_ICLASS 702
#define MENU_USE_ITEM_BACKGROUND 703
-#define MENU_MAX_COLUMNS 704
#define MENU_MAX_ROWS 705
#define MENU_USE_STYLE 706
#define MENU_ITEM 707
diff --git a/src/menus.c b/src/menus.c
index e7409644..4ebbee54 100644
--- a/src/menus.c
+++ b/src/menus.c
@@ -1730,7 +1730,6 @@ MenuStyleConfigLoad(FILE *fs)
}
}
break;
- case MENU_MAX_COLUMNS:
case MENU_MAX_ROWS:
ms->maxy = atoi(s2);
break;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.