Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
46fe3978
Commit
46fe3978
authored
May 16, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/preferences_widgets.cpp: increased max int in IntegerConfigControl.
parent
4b023b87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_help.h
include/vlc_help.h
+1
-1
modules/gui/wxwindows/preferences_widgets.cpp
modules/gui/wxwindows/preferences_widgets.cpp
+1
-1
No files found.
include/vlc_help.h
View file @
46fe3978
...
...
@@ -118,7 +118,7 @@
/*****************************************************************************
* GetCapabilityHelp: Display the help for one capability.
*****************************************************************************/
static
char
*
GetCapabilityHelp
(
char
*
psz_capability
,
int
i_type
)
static
inline
char
*
GetCapabilityHelp
(
char
*
psz_capability
,
int
i_type
)
{
if
(
psz_capability
==
NULL
)
return
""
;
...
...
modules/gui/wxwindows/preferences_widgets.cpp
View file @
46fe3978
...
...
@@ -527,7 +527,7 @@ IntegerConfigControl::IntegerConfigControl( vlc_object_t *p_this,
p_item
->
i_value
),
wxDefaultPosition
,
wxDefaultSize
,
wxSP_ARROW_KEYS
,
-
10000000
,
1
0000000
,
p_item
->
i_value
);
-
10000000
0
,
10
0000000
,
p_item
->
i_value
);
spin
->
SetToolTip
(
wxU
(
p_item
->
psz_longtext
)
);
sizer
->
Add
(
label
,
1
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
sizer
->
Add
(
spin
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment