1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

rename SearchWidget to GlobalSearchWidget

This commit is contained in:
Leo Franchi
2011-06-04 17:11:22 -04:00
parent 33a9391ee7
commit d8d88826f5
3 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>SearchWidget</class> <class>GlobalSearchWidget</class>
<widget class="QWidget" name="SearchWidget"> <widget class="QWidget" name="GlobalSearchWidget">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>

View File

@@ -77,7 +77,7 @@ using namespace Tomahawk;
TomahawkWindow::TomahawkWindow( QWidget* parent ) TomahawkWindow::TomahawkWindow( QWidget* parent )
: QMainWindow( parent ) : QMainWindow( parent )
, ui( new Ui::TomahawkWindow ) , ui( new Ui::TomahawkWindow )
, m_searchWidget( new Ui::SearchWidget ) , m_searchWidget( new Ui::GlobalSearchWidget )
, m_audioControls( new AudioControls( this ) ) , m_audioControls( new AudioControls( this ) )
, m_trayIcon( new TomahawkTrayIcon( this ) ) , m_trayIcon( new TomahawkTrayIcon( this ) )
, m_sourcetree( 0 ) , m_sourcetree( 0 )

View File

@@ -38,7 +38,7 @@ class TomahawkTrayIcon;
namespace Ui namespace Ui
{ {
class TomahawkWindow; class TomahawkWindow;
class SearchWidget; class GlobalSearchWidget;
} }
class TomahawkWindow : public QMainWindow class TomahawkWindow : public QMainWindow
@@ -100,7 +100,7 @@ private:
void setupSignals(); void setupSignals();
Ui::TomahawkWindow* ui; Ui::TomahawkWindow* ui;
Ui::SearchWidget* m_searchWidget; Ui::GlobalSearchWidget* m_searchWidget;
QWidget* m_searchBox; QWidget* m_searchBox;
AudioControls* m_audioControls; AudioControls* m_audioControls;
TomahawkTrayIcon* m_trayIcon; TomahawkTrayIcon* m_trayIcon;