Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
c3638c4d
Commit
c3638c4d
authored
Dec 04, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/*: use MSTRTIME_MAX_SIZE instead of OFFSETTOTIME_MAX_SIZE.
parent
5383df0c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
modules/gui/beos/VlcWrapper.cpp
modules/gui/beos/VlcWrapper.cpp
+2
-2
modules/gui/kde/interface.cpp
modules/gui/kde/interface.cpp
+1
-1
modules/gui/pda/pda.c
modules/gui/pda/pda.c
+2
-2
modules/gui/qt/intf.cpp
modules/gui/qt/intf.cpp
+2
-2
modules/gui/wxwindows/interface.cpp
modules/gui/wxwindows/interface.cpp
+2
-2
No files found.
modules/gui/beos/VlcWrapper.cpp
View file @
c3638c4d
...
...
@@ -2,7 +2,7 @@
* VlcWrapper.cpp: BeOS plugin for vlc (derived from MacOS X port)
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: VlcWrapper.cpp,v 1.
39 2003/11/24 00:39:01 fenrir
Exp $
* $Id: VlcWrapper.cpp,v 1.
40 2003/12/04 10:25:47 gbazin
Exp $
*
* Authors: Florian G. Pflug <fgp@phlo.org>
* Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -270,7 +270,7 @@ void VlcWrapper::ToggleSubtitle( int i_subtitle )
const
char
*
VlcWrapper
::
GetTimeAsString
()
{
static
char
psz_time
[
OFFSETTO
TIME_MAX_SIZE
];
static
char
psz_time
[
MSTR
TIME_MAX_SIZE
];
if
(
!
p_input
)
{
...
...
modules/gui/kde/interface.cpp
View file @
c3638c4d
...
...
@@ -502,7 +502,7 @@ void KInterface::slotSliderChanged( int position )
{
if
(
p_intf
->
p_sys
->
p_input
!=
NULL
)
{
char
psz_time
[
OFFSETTO
TIME_MAX_SIZE
];
char
psz_time
[
MSTR
TIME_MAX_SIZE
];
vlc_mutex_lock
(
&
p_intf
->
p_sys
->
p_input
->
stream
.
stream_lock
);
...
...
modules/gui/pda/pda.c
View file @
c3638c4d
...
...
@@ -2,7 +2,7 @@
* pda.c : PDA Gtk2 plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: pda.c,v 1.1
5 2003/12/03 20:47:06 jpsama
n Exp $
* $Id: pda.c,v 1.1
6 2003/12/04 10:25:47 gbazi
n Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* Marc Ariberti <marcari@videolan.org>
...
...
@@ -564,7 +564,7 @@ void E_(GtkDisplayDate)( GtkAdjustment *p_adj )
if
(
p_intf
->
p_sys
->
p_input
)
{
#define p_area p_intf->p_sys->p_input->stream.p_selected_area
char
psz_time
[
OFFSETTO
TIME_MAX_SIZE
];
char
psz_time
[
MSTR
TIME_MAX_SIZE
];
gtk_label_set_text
(
GTK_LABEL
(
p_intf
->
p_sys
->
p_slider_label
),
input_OffsetToTime
(
p_intf
->
p_sys
->
p_input
,
psz_time
,
...
...
modules/gui/qt/intf.cpp
View file @
c3638c4d
...
...
@@ -2,7 +2,7 @@
* intf.cpp: Qt interface
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: intf.cpp,v 1.
4 2003/07/23 01:13
:47 gbazin Exp $
* $Id: intf.cpp,v 1.
5 2003/12/04 10:25
:47 gbazin Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -264,7 +264,7 @@ void IntfWindow::DateDisplay( int i_range )
{
if
(
p_intf
->
p_sys
->
p_input
)
{
char
psz_time
[
OFFSETTO
TIME_MAX_SIZE
];
char
psz_time
[
MSTR
TIME_MAX_SIZE
];
vlc_mutex_lock
(
&
p_intf
->
p_sys
->
p_input
->
stream
.
stream_lock
);
p_date
->
setText
(
input_OffsetToTime
(
p_intf
->
p_sys
->
p_input
,
psz_time
,
...
...
modules/gui/wxwindows/interface.cpp
View file @
c3638c4d
...
...
@@ -2,7 +2,7 @@
* interface.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001, 2003 VideoLAN
* $Id: interface.cpp,v 1.7
5 2003/12/03 13:41:49 rocky
Exp $
* $Id: interface.cpp,v 1.7
6 2003/12/04 10:25:47 gbazin
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -1167,7 +1167,7 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
{
/* Update stream date */
#define p_area p_intf->p_sys->p_input->stream.p_selected_area
char
psz_time
[
OFFSETTO
TIME_MAX_SIZE
];
char
psz_time
[
MSTR
TIME_MAX_SIZE
];
slider_box
->
SetLabel
(
wxU
(
input_OffsetToTime
(
p_intf
->
p_sys
->
p_input
,
...
...
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