2015-06-10 Fred Gleason <fredg@paravelsystems.com>

* Refactored 'LogPlay' class to provide per-instance RDCae instances.
	in 'rdairplay/log_play.cpp' and 'rdairplay/log_play.h'.
This commit is contained in:
Fred Gleason
2015-06-10 11:39:20 -04:00
parent e87abe1fcf
commit 6d3881bd2f
12 changed files with 52 additions and 33 deletions

View File

@@ -45,7 +45,7 @@ class ListLog : public QWidget
{
Q_OBJECT
public:
ListLog(LogPlay *log,int id,bool allow_pause=false,
ListLog(LogPlay *log,RDCae *cae,int id,bool allow_pause=false,
QWidget *parent=0,const char *name=0);
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
@@ -153,6 +153,7 @@ class ListLog : public QWidget
bool list_pause_allowed;
bool list_audition_head_playing;
bool list_audition_tail_playing;
RDCae *list_cae;
};