Changeset 15e55a2f26b2c758b482c5dbe3c7f80188ea67aa
- Timestamp:
- 14/06/08 16:19:22
(6 months ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1213453162 +0200
- git-parent:
[ef5b823d8102ea89d27a53705a9cc7cbace6b352]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1213444562 +0200
- Message:
Cleanup indentation
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfbb8255 |
r15e55a2 |
|
| 174 | 174 | |
|---|
| 175 | 175 | /* Misc */ |
|---|
| 176 | | vlc_mutex_t *p_lock; /* Lock to use when modifying the config */ |
|---|
| 177 | | bool b_dirty; /* Dirty flag to indicate a config change */ |
|---|
| 178 | | bool b_advanced; /* Flag to indicate an advanced option */ |
|---|
| 179 | | bool b_internal; /* Flag to indicate option is not to be shown */ |
|---|
| 180 | | bool b_restart; /* Flag to indicate the option needs a restart */ |
|---|
| | 176 | vlc_mutex_t *p_lock; /* Lock to use when modifying the config */ |
|---|
| | 177 | bool b_dirty; /* Dirty flag to indicate a config change */ |
|---|
| | 178 | bool b_advanced; /* Flag to indicate an advanced option */ |
|---|
| | 179 | bool b_internal; /* Flag to indicate option is not to be shown */ |
|---|
| | 180 | bool b_restart; /* Flag to indicate the option needs a restart */ |
|---|
| 181 | 181 | /* to take effect */ |
|---|
| 182 | 182 | |
|---|
| 183 | 183 | /* Deprecated */ |
|---|
| 184 | | char *psz_oldname; /* Old option name */ |
|---|
| 185 | | bool b_removed; |
|---|
| | 184 | char *psz_oldname; /* Old option name */ |
|---|
| | 185 | bool b_removed; |
|---|
| 186 | 186 | |
|---|
| 187 | 187 | /* Option values loaded from config file */ |
|---|
| 188 | | bool b_autosave; /* Config will be auto-saved at exit time */ |
|---|
| 189 | | bool b_unsaveable; /* Config should not be saved */ |
|---|
| 190 | | |
|---|
| 191 | | bool b_safe; |
|---|
| | 188 | bool b_autosave; /* Config will be auto-saved at exit time */ |
|---|
| | 189 | bool b_unsaveable; /* Config should not be saved */ |
|---|
| | 190 | |
|---|
| | 191 | bool b_safe; |
|---|
| 192 | 192 | }; |
|---|
| 193 | 193 | |
|---|