summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
-}
-