/[svn]/qsampler/trunk/src/qsamplerMainForm.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerMainForm.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1474 by schoenebeck, Mon Nov 5 20:47:38 2007 UTC revision 1475 by schoenebeck, Tue Nov 6 22:12:32 2007 UTC
# Line 2166  ChannelStrip* MainForm::createChannelStr Line 2166  ChannelStrip* MainForm::createChannelStr
2166      }      }
2167    
2168      // Add a new channel itema...      // Add a new channel itema...
2169      pChannelStrip = new ChannelStrip(m_pWorkspace);      pChannelStrip = new ChannelStrip();
2170      if (pChannelStrip == NULL)      if (pChannelStrip == NULL)
2171          return NULL;          return NULL;
2172    
2173        m_pWorkspace->addWindow(pChannelStrip, Qt::Tool);
2174    
2175      // Actual channel strip setup...      // Actual channel strip setup...
2176      pChannelStrip->setup(pChannel);      pChannelStrip->setup(pChannel);
2177          QObject::connect(pChannelStrip,          QObject::connect(pChannelStrip,
2178                  SIGNAL(channelChanged(qsamplerChannelStrip *)),                  SIGNAL(channelChanged(ChannelStrip*)),
2179                  SLOT(channelStripChanged(qsamplerChannelStrip *)));                  SLOT(channelStripChanged(ChannelStrip*)));
2180      // Set some initial aesthetic options...      // Set some initial aesthetic options...
2181      if (m_pOptions) {      if (m_pOptions) {
2182          // Background display effect...          // Background display effect...

Legend:
Removed from v.1474  
changed lines
  Added in v.1475

  ViewVC Help
Powered by ViewVC