diff -Naur rezound-0.12.2beta.orig/src/frontend_fox/CMainWindow.cpp rezound-0.12.2beta/src/frontend_fox/CMainWindow.cpp --- rezound-0.12.2beta.orig/src/frontend_fox/CMainWindow.cpp 2005-09-05 00:31:10.000000000 +0200 +++ rezound-0.12.2beta/src/frontend_fox/CMainWindow.cpp 2006-07-14 00:41:44.000000000 +0200 @@ -433,7 +433,7 @@ long CMainWindow::onSoundListChange(FXObject *sender,FXSelector sel,void *ptr) { - FXint index=(FXint)ptr; + FXint index=(long)ptr; if(index>=0 && indexgetNumItems()) { @@ -1836,13 +1836,13 @@ if(pos==0 && FXSELID(sel)==ID_SHUTTLE_BACKWARD) { - if((unsigned)ptr > 1/*came from keyboard event*/) enableAutoRepeat(getApp()->getDisplay(),false); // QQQ + if((long)ptr > 1/*came from keyboard event*/) enableAutoRepeat(getApp()->getDisplay(),false); // QQQ shuttleDial->setValue(pos-inc); onShuttleChange(sender,sel,ptr); } else if(pos==0 && FXSELID(sel)==ID_SHUTTLE_FORWARD) { - if((unsigned)ptr > 1/*came from keyboard event*/) enableAutoRepeat(getApp()->getDisplay(),false); // QQQ + if((long)ptr > 1/*came from keyboard event*/) enableAutoRepeat(getApp()->getDisplay(),false); // QQQ shuttleDial->setValue(pos+inc); onShuttleChange(sender,sel,ptr); } diff -Naur rezound-0.12.2beta.orig/src/frontend_fox/CMp3Dialog.cpp rezound-0.12.2beta/src/frontend_fox/CMp3Dialog.cpp --- rezound-0.12.2beta.orig/src/frontend_fox/CMp3Dialog.cpp 2004-06-19 05:53:18.000000000 +0200 +++ rezound-0.12.2beta/src/frontend_fox/CMp3Dialog.cpp 2006-07-14 00:42:25.000000000 +0200 @@ -170,7 +170,7 @@ long CMp3Dialog::onRadioButton(FXObject *sender,FXSelector sel,void *ptr) { - if((int)ptr==0) // only act when ptr==1 when it's getting checked + if((long)ptr==0) // only act when ptr==1 when it's getting checked return 1; // turn off all buttons diff -Naur rezound-0.12.2beta.orig/src/frontend_fox/COggDialog.cpp rezound-0.12.2beta/src/frontend_fox/COggDialog.cpp --- rezound-0.12.2beta.orig/src/frontend_fox/COggDialog.cpp 2004-02-11 06:11:17.000000000 +0100 +++ rezound-0.12.2beta/src/frontend_fox/COggDialog.cpp 2006-07-14 00:42:06.000000000 +0200 @@ -136,7 +136,7 @@ long COggDialog::onRadioButton(FXObject *sender,FXSelector sel,void *ptr) { - if((int)ptr==0) // only act when ptr==1 when it's getting checked + if((long)ptr==0) // only act when ptr==1 when it's getting checked return 1; // turn off all buttons diff -Naur rezound-0.12.2beta.orig/src/frontend_fox/CPasteChannelsDialog.cpp rezound-0.12.2beta/src/frontend_fox/CPasteChannelsDialog.cpp --- rezound-0.12.2beta.orig/src/frontend_fox/CPasteChannelsDialog.cpp 2005-02-09 09:17:36.000000000 +0100 +++ rezound-0.12.2beta/src/frontend_fox/CPasteChannelsDialog.cpp 2006-07-14 00:40:51.000000000 +0200 @@ -206,7 +206,7 @@ { pasteChannels.clear(); - actionParameters->setValue(_("MixMethod"),(unsigned)(mixTypeComboBox->getItemData(mixTypeComboBox->getCurrentItem()))); + actionParameters->setValue(_("MixMethod"),(long)(mixTypeComboBox->getItemData(mixTypeComboBox->getCurrentItem()))); if(repeatTypeComboBox->getCurrentItem()==0) { // repeating it a given number of times