Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b9836886
Commit
b9836886
authored
Mar 04, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fileinfo.*: I should lean C++
parent
a80da5c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/wxwidgets/dialogs/fileinfo.cpp
modules/gui/wxwidgets/dialogs/fileinfo.cpp
+1
-2
modules/gui/wxwidgets/dialogs/fileinfo.hpp
modules/gui/wxwidgets/dialogs/fileinfo.hpp
+2
-1
No files found.
modules/gui/wxwidgets/dialogs/fileinfo.cpp
View file @
b9836886
...
...
@@ -58,7 +58,7 @@ FileInfo::FileInfo( intf_thread_t *_p_intf, wxWindow *p_parent ):
playlist_t
*
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
b
ool
b
_stats
=
config_GetInt
(
p_intf
,
"stats"
);
b_stats
=
config_GetInt
(
p_intf
,
"stats"
);
/* Initializations */
SetIcon
(
*
p_intf
->
p_sys
->
p_icon
);
SetAutoLayout
(
TRUE
);
...
...
@@ -104,7 +104,6 @@ FileInfo::FileInfo( intf_thread_t *_p_intf, wxWindow *p_parent ):
void
FileInfo
::
Update
()
{
if
(
mdate
()
-
last_update
<
400000L
)
return
;
last_update
=
mdate
();
...
...
modules/gui/wxwidgets/dialogs/fileinfo.hpp
View file @
b9836886
...
...
@@ -42,7 +42,6 @@ namespace wxvlc
void
Update
();
vlc_bool_t
b_need_update
;
bool
b_stats
;
private:
void
OnButtonClose
(
wxCommandEvent
&
event
);
...
...
@@ -59,6 +58,8 @@ namespace wxvlc
InputStatsInfoPanel
*
stats_info
;
wxBoxSizer
*
panel_sizer
;
bool
b_stats
;
};
};
...
...
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