mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 10:22:49 +00:00
kmediaplayer: initialize variable
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
7cbe3c4cf7
commit
de89beae46
2 changed files with 5 additions and 5 deletions
|
@ -193,7 +193,7 @@ void KMediaWindow::slotOpenPath()
|
||||||
|
|
||||||
void KMediaWindow::slotOpenURL()
|
void KMediaWindow::slotOpenURL()
|
||||||
{
|
{
|
||||||
bool dummy;
|
bool dummy = false;
|
||||||
QString protocols = m_player->player()->protocols().join(QLatin1String(", "));
|
QString protocols = m_player->player()->protocols().join(QLatin1String(", "));
|
||||||
KUrl url = KInputDialog::getText(
|
KUrl url = KInputDialog::getText(
|
||||||
i18n("Input URL"),
|
i18n("Input URL"),
|
||||||
|
|
|
@ -54,10 +54,10 @@ protected:
|
||||||
void readProperties(const KConfigGroup &configgroup) final;
|
void readProperties(const KConfigGroup &configgroup) final;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
KConfig *m_config;
|
KConfig* m_config;
|
||||||
KMediaWidget *m_player;
|
KMediaWidget* m_player;
|
||||||
KRecentFilesAction *m_recentfiles;
|
KRecentFilesAction* m_recentfiles;
|
||||||
QMenu *m_menu;
|
QMenu* m_menu;
|
||||||
float m_currenttime;
|
float m_currenttime;
|
||||||
bool m_playing;
|
bool m_playing;
|
||||||
uint m_inhibition;
|
uint m_inhibition;
|
||||||
|
|
Loading…
Add table
Reference in a new issue