summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-11 12:59:27 +0200
committerWolf Bergenheim <ext-wolf.2.bergenheim@nokia.com>2010-02-11 12:59:27 +0200
commit3579c858fd7c7a526fe57cd59add89724a810ea2 (patch)
tree2246401bffe1309dbb61ecb7db0227cff322d018
parentd6af19a10efff0cfcb497db45d5aa7b38b970367 (diff)
Removed reset mode methods
-rw-r--r--libresourceqt/include/qt4/policy/resource-set.h8
-rw-r--r--libresourceqt/src/resource-set.cpp10
2 files changed, 0 insertions, 18 deletions
diff --git a/libresourceqt/include/qt4/policy/resource-set.h b/libresourceqt/include/qt4/policy/resource-set.h
index 4442f94..9de0e08 100644
--- a/libresourceqt/include/qt4/policy/resource-set.h
+++ b/libresourceqt/include/qt4/policy/resource-set.h
@@ -166,18 +166,10 @@ public:
*/
void setAutoRelease();
/**
- * Resets the auto reselease flag to false (see \ref setAutoRelease()).
- */
- void resetAutoRelease();
- /**
* Sets that the resourcesGranted() signal is emited even if we already
* have the requested resources granted. By default this feature is off.
*/
void setAlwaysReply();
- /**
- * Resets the always reply flag (see \ref setAlwaysReply()) to false.
- */
- void resetAlwaysReply();
signals:
/**
diff --git a/libresourceqt/src/resource-set.cpp b/libresourceqt/src/resource-set.cpp
index 7f4792f..dc58828 100644
--- a/libresourceqt/src/resource-set.cpp
+++ b/libresourceqt/src/resource-set.cpp
@@ -116,18 +116,8 @@ void ResourceSet::setAutoRelease()
autoRelease = true;
}
-void ResourceSet::resetAutoRelease()
-{
- autoRelease = false;
-}
-
void ResourceSet::setAlwaysReply()
{
alwaysReply = true;
}
-void ResourceSet::resetAlwaysReply()
-{
- alwaysReply = false;
-}
-