Removed old code, update changelog

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@599 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Paul Giblock
2007-11-18 21:13:53 +00:00
parent 0802a8be09
commit 1ae296caba
2 changed files with 56 additions and 7 deletions

View File

@@ -1,3 +1,8 @@
2007-11-18 Paul Giblock <drfaygo/at/gmail/dot/com>
* include/track_container.h:
removed some obsolete functions
2007-11-18 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/vst_base/lvsl_client.cpp:
@@ -12,6 +17,57 @@
* acinclude.m4:
reverted Paul's private changes
2007-11-18 Paul Giblock <drfaygo/at/gmail/dot/com>
* plugins/ladspa_effect/ladspa_effect.h:
* plugins/bass_booster/bass_booster.h:
* plugins/stereo_enhancer/stereoenhancer_control_dialog.cpp
* plugins/stereo_enhancer/stereoenhancer_control_dialog.h
* include/main_window.h:
* include/instrument_track.h:
* include/track_container.h:
* src/widgets/rack_plugin.cpp:
* src/widgets/project_notes.cpp:
* src/widgets/tempo_sync_knob.cpp:
* src/tracks/instrument_track.cpp:
* src/tracks/pattern.cpp:
* src/core/track_container.cpp:
* src/core/tool.cpp:
* src/core/file_browser.cpp:
* src/core/main.cpp:
* src/core/piano_roll.cpp:
* src/core/main_window.cpp:
* src/core/song_editor.cpp:
* src/core/automation_pattern.cpp:
* src/core/automation_editor.cpp:
* src/core/bb_editor.cpp:
Replaced references to QWorkspace, made everything work with QMdiArea
* include/main_window.h:
mainWindow::workspace() now returns a QMdiArea
* include/rack_plugin.h:
Add m_subWindow to track QMdiSubWindow independently of the
control dialog
* include/track_container.h:
Emulate centralWidget by returning this pointer
* AUTHORS:
Added Paul Giblock as an author
* src/core/track_container.cpp:
Adding a subwindow before the widget is fully constructed causes
problems: no icon, no geometry, and sometime multiple windows.
Force each subclass to do their own workspace()->addWindow()
* src/core/main_window.cpp:
toggling of subWindows is performed on the parentWidgets. However,
things like instrumentTrack are actually QMdiSubWindows themselves
2007-11-14 Javier Serrano Polo <jasp00/at/terra/dot/es>
* configure.in:

View File

@@ -60,11 +60,6 @@ public:
return( (QWidget *) this );
}
/* void setCentralWidget( QWidget *cw )
{
//m_centralWidget = cw;
}*/
virtual void FASTCALL saveSettings( QDomDocument & _doc,
QDomElement & _parent );
@@ -148,8 +143,6 @@ protected:
virtual void resizeEvent( QResizeEvent * );
void addToWorkspace( void );
constTrackVector tracks( void ) const;
virtual QRect scrollAreaRect( void ) const