Changeset 175 for smplayer/vendor/current/src/preferencesdialog.h
- Timestamp:
- May 3, 2016, 2:14:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/preferencesdialog.h
r163 r175 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 4Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 17 17 */ 18 18 19 #ifndef _PREFERENCESDIALOG_H_20 #define _PREFERENCESDIALOG_H_19 #ifndef PREFERENCESDIALOG_H 20 #define PREFERENCESDIALOG_H 21 21 22 22 #include "ui_preferencesdialog.h" … … 42 42 class PrefTV; 43 43 class PrefUpdates; 44 class PrefNetwork; 44 45 class PrefAssociations; 45 46 … … 63 64 PrefAdvanced * mod_advanced() { return page_advanced; }; 64 65 PrefPlaylist * mod_playlist() { return page_playlist; }; 65 PrefUpdates * mod_updtes() { return page_updates; }; 66 PrefUpdates * mod_updates() { return page_updates; }; 67 PrefNetwork * mod_network() { return page_network; }; 66 68 67 69 void addSection(PrefWidget *w); … … 103 105 PrefTV * page_tv; 104 106 PrefUpdates * page_updates; 107 PrefNetwork * page_network; 105 108 PrefAdvanced * page_advanced; 106 109 … … 112 115 113 116 private: 114 115 117 QPushButton * okButton; 118 QPushButton * cancelButton; 116 119 QPushButton * applyButton; 117 120 QPushButton * helpButton; 118 121 }; 119 122
Note:
See TracChangeset
for help on using the changeset viewer.