File: shortcuteditor.cpp

package info (click to toggle)
esperanza 0.2.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 600 kB
  • ctags: 536
  • sloc: cpp: 4,533; sh: 63; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "preferences.h"
#include "shortcuteditor.h"

ShortCutEditor::ShortCutEditor (QWidget *parent, XClient *client) :
	PreferenceDialog (parent, client)
{
}

QList < QMap < QString, QVariant > >
ShortCutEditor::build_prefvalues ()
{
	qDebug ("apa...");
	QList < QMap < QString, QVariant > > ret;

	PREF_VALUE("shortcut/openmlibwindow", "Open medialib window", T_KEY, "m");

	return ret;
}