~neon/juk/master

« back to all changes in this revision

Viewing changes to playlistitem.cpp

  • Committer: Frerich Raabe
  • Date: 2003-04-09 18:43:41 UTC
  • Revision ID: git-v1:e34eae1b0d552eb7d6caf7db6397f6ccf70375cf
- 80% of the "Rename & Move files based on tag information" thing. Lacks
  a configuration dialog. Currently the KAction in juk.cpp is commented out
  so that the merkin doesn't get anal about stuff which does not work yet.
  Also, there's a return in FileRenamer::moveFile() because I don't trust it
  yet.

svn path=/trunk/kdemultimedia/juk/; revision=219338

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "tagguesser.h"
21
21
#include "playlistitem.h"
22
22
#include "playlist.h"
 
23
#include "filerenamer.h"
23
24
#include "collectionlist.h"
24
25
 
25
26
////////////////////////////////////////////////////////////////////////////////
94
95
    slotRefresh();
95
96
}
96
97
 
 
98
void PlaylistItem::renameFile()
 
99
{
 
100
    FileRenamer renamer;
 
101
    renamer.rename( this );
 
102
    slotRefresh();
 
103
}
 
104
 
97
105
////////////////////////////////////////////////////////////////////////////////
98
106
// PlaylistItem public slots
99
107
////////////////////////////////////////////////////////////////////////////////