summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorFabian Schillinger2010-07-09 21:18:44 +0200
committerFabian Schillinger2010-07-09 21:18:44 +0200
commit5acd0590258e9335cf4d3b1910a517efccd22a3e (patch)
tree5c2a127249fac6f8ba15d132c2cd6ef00e6a577f /src/util
parentBuilding rpms is now supported. On Debian based systems you need the rpm pack... (diff)
downloadpvs-5acd0590258e9335cf4d3b1910a517efccd22a3e.tar.gz
pvs-5acd0590258e9335cf4d3b1910a517efccd22a3e.tar.xz
pvs-5acd0590258e9335cf4d3b1910a517efccd22a3e.zip
first commit to test git
Diffstat (limited to 'src/util')
-rw-r--r--src/util/util.cpp7
-rw-r--r--src/util/util.h1
2 files changed, 0 insertions, 8 deletions
diff --git a/src/util/util.cpp b/src/util/util.cpp
index 946168e..c2d06a0 100644
--- a/src/util/util.cpp
+++ b/src/util/util.cpp
@@ -325,13 +325,6 @@ QString int2String(int intInt)
return QString(tmp);
}
-QString ptr2String(void* ptr)
-{
- char tmp[50];
- snprintf(tmp, 49, "%p", ptr);
- return QString(tmp);
-}
-
int string2Int(QString string)
{
return atoi(string.toUtf8().data());
diff --git a/src/util/util.h b/src/util/util.h
index 6ddefc6..37565cb 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -46,7 +46,6 @@ QString readPassFromPassFile();
bool getAllowed();
QString int2String(int intInt);
-QString ptr2String(void* ptr);
int string2Int(QString string);
int string2Int(QString string);
//} // end namespace util