=== modified file 'mixxx/src/mixxxview.cpp'
--- mixxx/src/mixxxview.cpp	2009-05-03 02:34:18 +0000
+++ mixxx/src/mixxxview.cpp	2009-05-22 03:42:53 +0000
@@ -740,7 +740,7 @@
                 if (m_pTabWidget == 0) {
 
                     //Create the tab widget to store the various panes in (library, effects, etc.)
-                    m_pTabWidget = new QStackedWidget(this);
+                    m_pTabWidget = new QTabWidget(this);
 
                     //Create the pages that go in the tab widget
                     m_pTabWidgetLibraryPage = new QWidget();
@@ -768,19 +768,10 @@
                                                     0);   //Default alignment
 
                     //Add the library page to the tab widget.
-                    m_pTabWidget->addWidget(m_pTabWidgetLibraryPage);//, tr("Library"));
-                    
-                    //Add the effects page to the tab widget.
-                    m_pTabWidget->addWidget(m_pTabWidgetEffectsPage);//, tr("Effects"));      
-                    
-                    /*
-                    //XXX: Re-enable this to get the tab widget back, post 1.7.0 release.
-                    //Add the library page to the tab widget.
-                    m_pTabWidget->addWidget(m_pTabWidgetLibraryPage, tr("Library"));
-                    
-                    //Add the effects page to the tab widget.
-                    m_pTabWidget->addWidget(m_pTabWidgetEffectsPage, tr("Effects"));   
-		    */             
+                    m_pTabWidget->addTab(m_pTabWidgetLibraryPage, tr("Library"));
+                    
+                    //Add the effects page to the tab widget.
+                    m_pTabWidget->addTab(m_pTabWidgetEffectsPage, tr("Effects"));             
                 }
                 
                 //Move the tab widget into position and size it properly.

=== modified file 'mixxx/src/mixxxview.h'
--- mixxx/src/mixxxview.h	2009-04-18 16:32:23 +0000
+++ mixxx/src/mixxxview.h	2009-05-22 03:33:01 +0000
@@ -118,7 +118,7 @@
     ConfigObject<ConfigValue> *m_pconfig;
 
     /** Tab widget, which contains several "pages" for different views */
-    QStackedWidget* m_pTabWidget; //XXX: Temporarily turned this into a QStackedWidget instead of a QTabWidget to disable the tabs for 1.7.0 since LADSPA effects isn't finished.
+    QTabWidget* m_pTabWidget;
     /** The widget containing the library/tracktable page */
     QWidget* m_pTabWidgetLibraryPage;
     /** The widget containing the effects/LADSPA page */

