diff options
author | fluxgen <fluxgen> | 2003-05-18 22:04:06 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-05-18 22:04:06 (GMT) |
commit | 251ca294abe7af0cbe5caf3c33052292cad42fa5 (patch) | |
tree | a2e42c98b33940dd4f590faf8b3803cf31a3d334 /src/IntResMenuItem.hh | |
parent | b90558a9a967ddd076ba5ed5fa02f0a6160760bd (diff) | |
download | fluxbox-251ca294abe7af0cbe5caf3c33052292cad42fa5.zip fluxbox-251ca294abe7af0cbe5caf3c33052292cad42fa5.tar.bz2 |
moved Resource to FbTk
Diffstat (limited to 'src/IntResMenuItem.hh')
-rw-r--r-- | src/IntResMenuItem.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/IntResMenuItem.hh b/src/IntResMenuItem.hh index 3466c91..6da3db9 100644 --- a/src/IntResMenuItem.hh +++ b/src/IntResMenuItem.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: IntResMenuItem.hh,v 1.1 2003/02/17 12:45:58 fluxgen Exp $ | 22 | // $Id: IntResMenuItem.hh,v 1.2 2003/05/18 21:59:14 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef INTRESMENUITEM_HH | 24 | #ifndef INTRESMENUITEM_HH |
25 | #define INTRESMENUITEM_HH | 25 | #define INTRESMENUITEM_HH |
@@ -30,7 +30,7 @@ | |||
30 | /// Changes an resource integer value between min and max | 30 | /// Changes an resource integer value between min and max |
31 | class IntResMenuItem: public FbTk::MenuItem { | 31 | class IntResMenuItem: public FbTk::MenuItem { |
32 | public: | 32 | public: |
33 | IntResMenuItem(const char *label, Resource<int> &res, int min_val, int max_val); | 33 | IntResMenuItem(const char *label, FbTk::Resource<int> &res, int min_val, int max_val); |
34 | 34 | ||
35 | void click(int button, int time); | 35 | void click(int button, int time); |
36 | 36 | ||
@@ -38,7 +38,7 @@ private: | |||
38 | std::string m_org_label; ///< original label | 38 | std::string m_org_label; ///< original label |
39 | const int m_max; ///< maximum value the integer can have | 39 | const int m_max; ///< maximum value the integer can have |
40 | const int m_min; ///< minimum value the integer can have | 40 | const int m_min; ///< minimum value the integer can have |
41 | Resource<int> &m_res; ///< resource item to be changed | 41 | FbTk::Resource<int> &m_res; ///< resource item to be changed |
42 | }; | 42 | }; |
43 | 43 | ||
44 | #endif // INTRESMENUITEM_HH | 44 | #endif // INTRESMENUITEM_HH |