summaryrefslogtreecommitdiff
path: root/noncore/apps/zsafe/categorylist.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/zsafe/categorylist.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/zsafe/categorylist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/apps/zsafe/categorylist.cpp b/noncore/apps/zsafe/categorylist.cpp
index 2fa59d2..c5e8d66 100644
--- a/noncore/apps/zsafe/categorylist.cpp
+++ b/noncore/apps/zsafe/categorylist.cpp
@@ -16,3 +16,3 @@ void CategoryList::insert (QString key, Category *category)
{
- categoryList.insert ((const char *) key, category);
+ categoryList.insert (key, category);
}
@@ -21,3 +21,3 @@ Category *CategoryList::find (QString key)
{
- return categoryList.find ((const char *) key);
+ return categoryList.find (key);
}
@@ -26,3 +26,3 @@ void CategoryList::remove (QString key)
{
- categoryList.remove ((const char *) key);
+ categoryList.remove (key);
}