summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/uniqueid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/uniqueid.cpp')
-rw-r--r--umbrello/umbrello/uniqueid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/umbrello/umbrello/uniqueid.cpp b/umbrello/umbrello/uniqueid.cpp
index 9c271cdb..d1f08341 100644
--- a/umbrello/umbrello/uniqueid.cpp
+++ b/umbrello/umbrello/uniqueid.cpp
@@ -26,7 +26,7 @@ Uml::IDType gen() {
static char buf[20];
int length = 12;
int i = 0;
- // Source: KDE4 kdelibs/tdecore/krandom.cpp KRandom::randomString()
+ // Source: KDE4 tdelibs/tdecore/krandom.cpp KRandom::randomString()
while (length--) {
int r = kapp->random() % 62;
r += 48;