1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-25 02:09:48 +01: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"?>
<ui version="4.0">
<class>SearchWidget</class>
<widget class="QWidget" name="SearchWidget">
<class>GlobalSearchWidget</class>
<widget class="QWidget" name="GlobalSearchWidget">
<property name="geometry">
<rect>
<x>0</x>

View File

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

View File

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