summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorup here <uphere+github@fastmail.fm>2016-12-03 12:17:47 +0000
committerGitHub <noreply@github.com>2016-12-03 12:17:47 +0000
commit9530c21be10dcee5eac49b37fafbc3c5b9d7e9b2 (patch)
tree87cbdf9ba881261455b6bec60d2517320aa22cb3 /lib
parent6b951600aa4477a7fac0b60deedc852c79117715 (diff)
downloadbemenu-9530c21be10dcee5eac49b37fafbc3c5b9d7e9b2.tar.gz
bemenu-9530c21be10dcee5eac49b37fafbc3c5b9d7e9b2.tar.bz2
bemenu-9530c21be10dcee5eac49b37fafbc3c5b9d7e9b2.zip
reference correct enum in documentation
The `bm_scrollbar_mode` constants linked to the `bm_run_result` enum in their doc comments.
Diffstat (limited to 'lib')
-rw-r--r--lib/bemenu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bemenu.h b/lib/bemenu.h
index d91e695..14368d7 100644
--- a/lib/bemenu.h
+++ b/lib/bemenu.h
@@ -137,9 +137,9 @@ enum bm_filter_mode {
/**
* Scrollbar display mode constants for bm_menu instance scrollbar.
*
- * - @link ::bm_run_result BM_SCROLLBAR_ALWAYS @endlink means that scrollbar is not displayed.
- * - @link ::bm_run_result BM_SCROLLBAR_ALWAYS @endlink means that scrollbar is displayed always.
- * - @link ::bm_run_result BM_SCROLLBAR_AUTOHIDE @endlink means that scrollbar is only displayed when there are more items than lines.
+ * - @link ::bm_scrollbar_mode BM_SCROLLBAR_ALWAYS @endlink means that scrollbar is not displayed.
+ * - @link ::bm_scrollbar_mode BM_SCROLLBAR_ALWAYS @endlink means that scrollbar is displayed always.
+ * - @link ::bm_scrollbar_mode BM_SCROLLBAR_AUTOHIDE @endlink means that scrollbar is only displayed when there are more items than lines.
*
* @link ::bm_scrollbar_mode BM_SCROLLBAR_LAST @endlink is provided for enumerating scrollbar modes.
* Using it as scrollbar mode however provides exactly same functionality as BM_SCROLLBAR_NONE.