xref: /haiku/src/preferences/keymap/KeymapListItem.cpp (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2004-2006 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Sandor Vroemisse
7  *		Jérôme Duval
8  */
9 
10 
11 #include "KeymapListItem.h"
12 
13 
14 KeymapListItem::KeymapListItem(entry_ref& keymap, const char* name)
15 	:
16 	BStringItem(name != NULL ? name : keymap.name),
17 	fKeymap(keymap)
18 {
19 }
20