1# -*- coding: utf-8 -*-
2
3
4__license__ = 'GPL 3'
5__copyright__ = '2011, John Schember <john@nachtimwald.com>'
6__docformat__ = 'restructuredtext en'
7
8'''
9Config widget access functions for configuring the store action.
10'''
11
12
13def config_widget():
14    from calibre.gui2.store.config.search.search_widget import StoreConfigWidget
15    return StoreConfigWidget()
16
17
18def save_settings(config_widget):
19    config_widget.save_settings()
20