summaryrefslogtreecommitdiff
path: root/src/FbTk/MenuTheme.hh
diff options
context:
space:
mode:
authormathias <mathias>2006-01-16 18:46:39 (GMT)
committermathias <mathias>2006-01-16 18:46:39 (GMT)
commitf803d8f2502796993a838783eeaf81b17f2faca0 (patch)
tree782146499f4c588c66ca7eab4309f5902ecb6a9c /src/FbTk/MenuTheme.hh
parentb7ddb0ca13278d7b5a3a45ef03fd394b9b387bf3 (diff)
downloadfluxbox_lack-f803d8f2502796993a838783eeaf81b17f2faca0.zip
fluxbox_lack-f803d8f2502796993a838783eeaf81b17f2faca0.tar.bz2
applied patch from php-coder to fix some warnings, mostly signed vs unsigned
issues
Diffstat (limited to 'src/FbTk/MenuTheme.hh')
-rw-r--r--src/FbTk/MenuTheme.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/MenuTheme.hh b/src/FbTk/MenuTheme.hh
index 8fc4d1c..67e1ae1 100644
--- a/src/FbTk/MenuTheme.hh
+++ b/src/FbTk/MenuTheme.hh
@@ -150,8 +150,8 @@ private:
150 MenuMode m_menumode; 150 MenuMode m_menumode;
151 unsigned int m_delayopen; ///< in msec 151 unsigned int m_delayopen; ///< in msec
152 unsigned int m_delayclose; ///< in msec 152 unsigned int m_delayclose; ///< in msec
153 int m_real_title_height; ///< the calculated item height (from font and menu.titleHeight) 153 unsigned int m_real_title_height; ///< the calculated item height (from font and menu.titleHeight)
154 int m_real_item_height; ///< the calculated item height (from font and menu.itemHeight) 154 unsigned int m_real_item_height; ///< the calculated item height (from font and menu.itemHeight)
155}; 155};
156 156
157} // end namespace FbTk 157} // end namespace FbTk