summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qstandardpaths.cpp
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2011-10-21 21:10:28 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-23 00:57:03 +0200
commit83c219dfe202097c17548a9789b5e661fcee593c (patch)
tree42161eec5b34f0319cc2518d8386a428372c0409 /src/corelib/io/qstandardpaths.cpp
parentddc093b90e26b2f5291ee70f9d752607429cd81a (diff)
Rename storageLocation() to writableLocation().
Change-Id: I8f6522a70950f78ddd6141360d36d104bd697e28 Reviewed-by: Thiago Macieira (Intel) <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/io/qstandardpaths.cpp')
-rw-r--r--src/corelib/io/qstandardpaths.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/io/qstandardpaths.cpp b/src/corelib/io/qstandardpaths.cpp
index 552bb21972..7deaceefc8 100644
--- a/src/corelib/io/qstandardpaths.cpp
+++ b/src/corelib/io/qstandardpaths.cpp
@@ -65,7 +65,7 @@ QT_BEGIN_NAMESPACE
\enum QStandardPaths::StandardLocation
This enum describes the different locations that can be queried using
- methods such as QStandardPaths::storageLocation, QStandardPaths::standardLocations,
+ methods such as QStandardPaths::writableLocation, QStandardPaths::standardLocations,
and QStandardPaths::displayName.
\value DesktopLocation Returns the user's desktop directory.
@@ -91,11 +91,11 @@ QT_BEGIN_NAMESPACE
configuration files should be written.
- \sa storageLocation() standardLocations() displayName() locate() locateAll()
+ \sa writableLocation() standardLocations() displayName() locate() locateAll()
*/
/*!
- \fn QString QStandardPaths::storageLocation(StandardLocation type)
+ \fn QString QStandardPaths::writableLocation(StandardLocation type)
Returns the directory where files of \a type should be written to, or an empty string
if the location cannot be determined.
@@ -117,7 +117,7 @@ QT_BEGIN_NAMESPACE
Returns all the directories where files of \a type belong.
Much like the PATH variable, it returns the directories in order of priority,
- starting with the user-specific storageLocation() for the \a type.
+ starting with the user-specific writableLocation() for the \a type.
*/
/*!