Changeset 185

Show
Ignore:
Timestamp:
06/10/08 13:36:02 (5 years ago)
Author:
smoors
Message:

added "export soundlibrary"

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gui/src/MainForm.cpp

    r178 r185  
    5353#include "SoundLibrary/SoundLibraryImportDialog.h" 
    5454#include "SoundLibrary/SoundLibrarySaveDialog.h" 
     55#include "SoundLibrary/SoundLibraryExportDialog.h" 
    5556#include "PlaylistEditor/PlaylistDialog.h" 
    5657 
     
    902903void MainForm::action_instruments_exportLibrary() 
    903904{ 
    904   ERRORLOG( "Not implemented yet" ); 
    905   QMessageBox::warning( this, "Hydrogen", QString( "Not implemented yet.") ); 
    906 } 
     905        SoundLibraryExportDialog exportDialog( this ); 
     906        exportDialog.exec(); 
     907} 
     908 
    907909 
    908910