blob: 6760288924aba45528eca3d18b64e2cf47044645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* This file is a part of hildon
*
* Copyright (C) 2008 Nokia Corporation, all rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser Public License as published by
* the Free Software Foundation; version 2 of the license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser Public License for more details.
*
*/
#ifndef __HILDON_PICKER_BUTTON_PRIVATE__
#define __HILDON_PICKER_BUTTON_PRIVATE__
#include "hildon-picker-button.h"
G_BEGIN_DECLS
G_GNUC_INTERNAL void
hildon_picker_button_disable_value_changed (HildonPickerButton *button,
gboolean disable);
G_END_DECLS
#endif /* __HILDON_PICKER_BUTTON_PRIVATE__ */
|