|
From: <pst...@us...> - 2008-04-02 13:46:07
|
Revision: 387
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=387&view=rev
Author: pstieber
Date: 2008-04-02 06:46:04 -0700 (Wed, 02 Apr 2008)
Log Message:
-----------
Changed a char * argument to const char*.
Modified Paths:
--------------
trunk/jazz/src/AlsaPlayer.cpp
trunk/jazz/src/AlsaPlayer.h
Modified: trunk/jazz/src/AlsaPlayer.cpp
===================================================================
--- trunk/jazz/src/AlsaPlayer.cpp 2008-04-02 04:40:09 UTC (rev 386)
+++ trunk/jazz/src/AlsaPlayer.cpp 2008-04-02 13:46:04 UTC (rev 387)
@@ -930,7 +930,7 @@
//-----------------------------------------------------------------------------
int tAlsaPlayer::select_list(
tAlsaDeviceList& list,
- char* title,
+ const char* title,
int def_device)
{
if (list.GetCount() > 0)
Modified: trunk/jazz/src/AlsaPlayer.h
===================================================================
--- trunk/jazz/src/AlsaPlayer.h 2008-04-02 04:40:09 UTC (rev 386)
+++ trunk/jazz/src/AlsaPlayer.h 2008-04-02 13:46:04 UTC (rev 387)
@@ -90,7 +90,7 @@
void scan_clients(
tAlsaDeviceList& Devicelist,
unsigned DeviceCapabilities);
- int select_list(tAlsaDeviceList &list, char *title, int def_device);
+ int select_list(tAlsaDeviceList &list, const char *title, int def_device);
int start_timer(long clock);
int write(snd_seq_event_t *ev) { return write(ev, 0); } // 0 == ok
int write(snd_seq_event_t *ev, int now); // 0 == ok
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|