~ubuntu-branches/ubuntu/raring/gwenview/raring-proposed

« back to all changes in this revision

Viewing changes to importer/fileutils.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac, Philip Muškovac, Scott Kitterman
  • Date: 2011-12-24 18:54:55 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111224185455-zxffs6i6m5cwwuze
Tags: 4:4.7.95-0ubuntu1
[ Philip Muškovac ]
* New upstream release candiate

[ Scott Kitterman ]
* Fix Ubuntu Vcs- header in debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef FILEUTILS_H
22
22
#define FILEUTILS_H
23
23
 
 
24
class QString;
24
25
class QWidget;
25
26
class KUrl;
26
27
 
47
48
 */
48
49
RenameResult rename(const KUrl& src, const KUrl& dst, QWidget* authWindow = 0);
49
50
 
 
51
/**
 
52
 * Create a temp dir in baseDir, starting with prefix.  If successful returns
 
53
 * the created dir otherwise returns an empty string and writes the error message
 
54
 * in errorMessage.
 
55
 *
 
56
 * errorMessage must be a valid pointer.
 
57
 */
 
58
QString createTempDir(const QString& baseDir, const QString& prefix, QString* errorMessage);
 
59
 
50
60
} // namespace
51
61
} // namespace
52
62