Commit 50c12eae authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: reindent

parent 89f5d368
...@@ -1088,13 +1088,12 @@ void PLModel::popupAddNode() ...@@ -1088,13 +1088,12 @@ void PLModel::popupAddNode()
qtr( I_NEW_DIR ), qtr( I_NEW_DIR_NAME ), qtr( I_NEW_DIR ), qtr( I_NEW_DIR_NAME ),
QLineEdit::Normal, QString(), &ok); QLineEdit::Normal, QString(), &ok);
if( !ok || name.isEmpty() ) return; if( !ok || name.isEmpty() ) return;
PL_LOCK; PL_LOCK;
playlist_item_t *p_item = playlist_ItemGetById( p_playlist, playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
i_popup_parent ); i_popup_parent );
if( p_item ) if( p_item )
{
playlist_NodeCreate( p_playlist, qtu( name ), p_item, PLAYLIST_END, 0, NULL ); playlist_NodeCreate( p_playlist, qtu( name ), p_item, PLAYLIST_END, 0, NULL );
}
PL_UNLOCK; PL_UNLOCK;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment