git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13263 a95241bf-73f2-0310-859d-f6bbb57e9c96
29 lines
713 B
C++
29 lines
713 B
C++
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
|
|
//
|
|
// Copyright (c) 2004, Haiku
|
|
//
|
|
// This software is part of the Haiku distribution and is covered
|
|
// by the Haiku license.
|
|
//
|
|
//
|
|
// File: KeymapListItem.cpp
|
|
// Author: Sandor Vroemisse, Jérôme Duval
|
|
// Description: Keymap Preferences
|
|
// Created : July 12, 2004
|
|
//
|
|
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
|
|
|
|
/*
|
|
* A BStringItem modified such that it holds
|
|
* the BEntry object it corresponds with
|
|
*/
|
|
|
|
#include "KeymapListItem.h"
|
|
|
|
|
|
KeymapListItem::KeymapListItem( entry_ref &keymap, const char* name )
|
|
: BStringItem( name ? name : keymap.name ),
|
|
fKeymap(keymap)
|
|
{
|
|
}
|