~ubuntu-branches/debian/stretch/smplayer/stretch

« back to all changes in this revision

Viewing changes to src/preferencesdialog.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-10-08 12:51:23 UTC
  • mfrom: (1.3.1) (21.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20131008125123-b3n39yi2i7dxvq5p
Tags: 0.8.6-1
* Team upload.
* Upload to unstable.
* New upstream release.
* Refresh patches.
* Fix VCS urls to meet the canonical form.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  smplayer, GUI front-end for mplayer.
2
 
    Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
 
2
    Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
3
3
 
4
4
    This program is free software; you can redistribute it and/or modify
5
5
    it under the terms of the GNU General Public License as published by
40
40
class PrefAdvanced;
41
41
class PrefPlaylist;
42
42
class PrefTV;
 
43
class PrefUpdates;
43
44
class PrefAssociations;
44
45
 
45
46
class Preferences;
61
62
        PrefInput * mod_input() { return page_input; };
62
63
        PrefAdvanced * mod_advanced() { return page_advanced; };
63
64
        PrefPlaylist * mod_playlist() { return page_playlist; };
 
65
        PrefUpdates * mod_updtes() { return page_updates; };
64
66
 
65
67
        void addSection(PrefWidget *w);
66
68
 
99
101
        PrefInput * page_input;
100
102
        PrefPlaylist * page_playlist;
101
103
        PrefTV * page_tv;
 
104
        PrefUpdates * page_updates;
102
105
        PrefAdvanced * page_advanced;
103
106
 
104
107
#if USE_ASSOCIATIONS
105
 
        PrefAssociations* page_associations; 
 
108
        PrefAssociations* page_associations;
106
109
#endif
107
110
 
108
111
        QTextBrowser * help_window;