diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-03-03 16:46:40 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-03-03 16:46:40 +0000 |
commit | 6fab1031e2f5b165ed723adbc9d160303d8baece (patch) | |
tree | f22835c1d378234f817e0277dfa99fd45e2a18ad /audio/juk/files/patch-juk::playlistbox.cpp | |
parent | Update lang/ruby-devel to 1.8.0-preview2. (diff) |
New port juk version 1.0: JuK, a music manager and jukebox for KDE
Submitted by: Lauri Watts <lauri@kde.org>
Reviewed by: kde (members),
Scott Wheeler <wheeler@kde.org> (developer)
Notes
Notes:
svn path=/head/; revision=76801
Diffstat (limited to 'audio/juk/files/patch-juk::playlistbox.cpp')
-rw-r--r-- | audio/juk/files/patch-juk::playlistbox.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/juk/files/patch-juk::playlistbox.cpp b/audio/juk/files/patch-juk::playlistbox.cpp new file mode 100644 index 000000000000..909ad3847e81 --- /dev/null +++ b/audio/juk/files/patch-juk::playlistbox.cpp @@ -0,0 +1,20 @@ +--- juk/playlistbox.cpp.orig Mon Feb 17 04:03:17 2003 ++++ juk/playlistbox.cpp Mon Mar 3 12:24:34 2003 +@@ -129,7 +129,7 @@ + + bool ok; + +- QString name = QInputDialog::getText(i18n("Rename..."), i18n("Please enter a name for this playlist:"), ++ QString name = QInputDialog::getText(i18n("Rename"), i18n("Please enter a name for this playlist:"), + QLineEdit::Normal, item->text(), &ok); + if(ok) { + item->setText(name); +@@ -158,7 +158,7 @@ + + // If this text is changed, please also change it in PlaylistSplitter::createPlaylist(). + +- QString name = QInputDialog::getText(i18n("New Playlist..."), i18n("Please enter a name for the new playlist:"), ++ QString name = QInputDialog::getText(i18n("New Playlist"), i18n("Please enter a name for the new playlist:"), + QLineEdit::Normal, splitter->uniquePlaylistName(item->text(), true), &ok); + if(ok) { + Playlist *p = splitter->createPlaylist(name); |