Reformat ALL the source!
[quassel.git] / src / core / storage.cpp
index 4bf6b30..57c23ae 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 #include <QCryptographicHash>
 
 Storage::Storage(QObject *parent)
-  : QObject(parent)
+    : QObject(parent)
 {
 }
 
-QString Storage::cryptedPassword(const QString &password) {
-  return QString(QCryptographicHash::hash(password.toUtf8(), QCryptographicHash::Sha1).toHex());
+
+QString Storage::cryptedPassword(const QString &password)
+{
+    return QString(QCryptographicHash::hash(password.toUtf8(), QCryptographicHash::Sha1).toHex());
 }