Yearly bump
[quassel.git] / src / uisupport / bufferview.cpp
index 7bc359a..c003c9d 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2010 by the Quassel Project                        *
+ *   Copyright (C) 2005-2013 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -489,9 +489,9 @@ void BufferView::hideCurrentBuffer() {
   QModelIndex index = selectionModel()->currentIndex();
   if(index.data(NetworkModel::ItemTypeRole) != NetworkModel::BufferItemType)
     return;
-  
+
   BufferId bufferId = index.data(NetworkModel::BufferIdRole).value<BufferId>();
-  
+
   //The check above means we won't be looking at a network, which should always be the first row, so we can just go backwards.
   changeBuffer(Backward);