Move HTMLDecoder class to a new folder decoders.

wilder
Gustavo Carneiro 6 years ago committed by Tomaz Canabrava
parent 72d604c6cc
commit 61f7ce0f0c
  1. 2
      src/CMakeLists.txt
  2. 2
      src/PlainTextDecoder.h
  3. 2
      src/SaveHistoryTask.cpp
  4. 2
      src/Screen.cpp
  5. 2
      src/autotests/TerminalCharacterDecoderTest.cpp
  6. 0
      src/decoders/HTMLDecoder.cpp
  7. 0
      src/decoders/HTMLDecoder.h
  8. 0
      src/decoders/TerminalCharacterDecoder.h

@ -113,7 +113,7 @@ set(konsoleprivate_SRCS ${windowadaptors_SRCS}
EscapeSequenceUrlExtractor.cpp
ExtendedCharTable.cpp
FontDialog.cpp
HTMLDecoder.cpp
decoders/HTMLDecoder.cpp
HistorySizeDialog.cpp
KeyBindingEditor.cpp
LabelsAligner.cpp

@ -9,7 +9,7 @@
#include "konsoleprivate_export.h"
#include "TerminalCharacterDecoder.h"
#include "../decoders/TerminalCharacterDecoder.h"
class QTextStream;
template<typename> class QList;

@ -21,7 +21,7 @@
#include "Emulation.h"
#include "PlainTextDecoder.h"
#include "HTMLDecoder.h"
#include "../decoders/HTMLDecoder.h"
namespace Konsole {

@ -13,7 +13,7 @@
// Konsole
#include "PlainTextDecoder.h"
#include "HTMLDecoder.h"
#include "../decoders/HTMLDecoder.h"
#include "history/HistoryType.h"
#include "history/HistoryScrollNone.h"
#include "ExtendedCharTable.h"

@ -10,7 +10,7 @@
// Konsole
#include "../PlainTextDecoder.h"
#include "../HTMLDecoder.h"
#include "../decoders/HTMLDecoder.h"
// Qt
#include <QTextStream>

Loading…
Cancel
Save