~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to juk/playlistsplitter.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
    // Create a splitter to go between the playlists and the editor.
167
167
 
168
168
    QSplitter *editorSplitter = new QSplitter(Qt::Vertical, this);
169
 
    editorSplitter->setObjectName("editorSplitter");
 
169
    editorSplitter->setObjectName( QLatin1String("editorSplitter" ));
170
170
 
171
171
    // Create the playlist and the editor.
172
172
 
176
176
    topLayout->setSpacing(0);
177
177
 
178
178
    m_playlistStack = new QStackedWidget(top);
179
 
    m_playlistStack->setObjectName("playlistStack");
 
179
    m_playlistStack->setObjectName( QLatin1String("playlistStack" ));
180
180
    m_playlistStack->installEventFilter(this);
181
181
    m_playlistStack->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
182
182
    m_playlistStack->hide(); // Will be shown after CollectionList filled.
183
183
 
184
184
    m_editor = new TagEditor(editorSplitter);
185
 
    m_editor->setObjectName("TagEditor");
 
185
    m_editor->setObjectName( QLatin1String("TagEditor" ));
186
186
 
187
187
    // Make the editor as small as possible (or at least as small as recommended)
188
188
 
192
192
    // Create the PlaylistBox
193
193
 
194
194
    m_playlistBox = new PlaylistBox(m_player, this, m_playlistStack);
195
 
    m_playlistBox->setObjectName( "playlistBox" );
 
195
    m_playlistBox->setObjectName( QLatin1String( "playlistBox" ) );
196
196
 
197
197
    connect(m_playlistBox->object(), SIGNAL(signalSelectedItemsChanged()),
198
198
            this, SLOT(slotPlaylistSelectionChanged()));