Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 26, 2013
1 parent 17645e2 commit 782f866
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 11 deletions.
4 changes: 3 additions & 1 deletion doomsday/libdeng2/data.pri
Expand Up @@ -45,7 +45,9 @@ HEADERS += \
include/de/WaitableFIFO \
include/de/Writer \
include/de/Zeroed \
include/de/ZipArchive \
include/de/ZipArchive

HEADERS += \
include/de/data/accessorvalue.h \
include/de/data/archive.h \
include/de/data/arrayvalue.h \
Expand Down
4 changes: 3 additions & 1 deletion doomsday/libdeng2/filesys.pri
Expand Up @@ -10,7 +10,9 @@ HEADERS += \
include/de/LibraryFile \
include/de/NativeFile \
include/de/NativePath \
include/de/PackageFolder \
include/de/PackageFolder

HEADERS += \
include/de/filesys/archivefeed.h \
include/de/filesys/archiveentryfile.h \
include/de/filesys/bytearrayfile.h \
Expand Down
19 changes: 19 additions & 0 deletions doomsday/libdeng2/include/de/core/monospacelogsinkformatter.h
@@ -1,3 +1,22 @@
/** @file monospacelogsinkformatter.h Fixed-width log entry formatter.
* @ingroup core
*
* @authors Copyright © 2013 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* @par License
* GPL: http://www.gnu.org/licenses/gpl.html
*
* <small>This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. This program is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details. You should have received a copy of the GNU
* General Public License along with this program; if not, see:
* http://www.gnu.org/licenses</small>
*/

#ifndef LIBDENG2_MONOSPACELOGSINKFORMATTER_H
#define LIBDENG2_MONOSPACELOGSINKFORMATTER_H

Expand Down
4 changes: 3 additions & 1 deletion doomsday/libdeng2/network.pri
Expand Up @@ -7,7 +7,9 @@ HEADERS += \
include/de/Protocol \
include/de/RecordPacket \
include/de/Socket \
include/de/Transmitter \
include/de/Transmitter

HEADERS += \
include/de/net/address.h \
include/de/net/identifiedpacket.h \
include/de/net/message.h \
Expand Down
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/core/debuglogsink.cpp
@@ -1,4 +1,4 @@
/** @file debuglogsink.h Log sink that uses QDebug for output.
/** @file debuglogsink.cpp Log sink that uses QDebug for output.
* @ingroup core
*
* @authors Copyright © 2013 Jaakko Keränen <jaakko.keranen@iki.fi>
Expand Down
25 changes: 19 additions & 6 deletions doomsday/libdeng2/src/core/monospacelogsinkformatter.cpp
@@ -1,3 +1,22 @@
/** @file monospacelogsinkformatter.cpp Fixed-width log entry formatter.
* @ingroup core
*
* @authors Copyright © 2013 Jaakko Keränen <jaakko.keranen@iki.fi>
*
* @par License
* GPL: http://www.gnu.org/licenses/gpl.html
*
* <small>This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. This program is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details. You should have received a copy of the GNU
* General Public License along with this program; if not, see:
* http://www.gnu.org/licenses</small>
*/

#include "de/MonospaceLogSinkFormatter"

namespace de {
Expand Down Expand Up @@ -140,12 +159,6 @@ QList<String> MonospaceLogSinkFormatter::logEntryToTextLines(LogEntry const &ent
lineText.replace("$R", String(maxLen - _minimumIndent, '-'));

resultLines.append(lineText);
/*
foreach(IOutputStream *stream, os)
{
if(stream) *stream << lineText << "\n";
}
*/

// Advance to the next line.
wrapIndent = nextWrapIndent;
Expand Down
4 changes: 3 additions & 1 deletion doomsday/libdeng2/widgets.pri
Expand Up @@ -8,7 +8,9 @@ HEADERS += \
include/de/RectangleRule \
include/de/RootWidget \
include/de/ScalarRule \
include/de/Widget \
include/de/Widget

HEADERS += \
include/de/widgets/animation.h \
include/de/widgets/animationvector.h \
include/de/widgets/constantrule.h \
Expand Down

0 comments on commit 782f866

Please sign in to comment.