Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Utilities
Konsole
Commits
fdad2645
Commit
fdad2645
authored
Jul 22, 2020
by
Gustavo Carneiro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move History files to a new folder.
parent
616db49e
Changes
30
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
33 additions
and
33 deletions
+33
-33
src/CMakeLists.txt
src/CMakeLists.txt
+12
-12
src/Screen.cpp
src/Screen.cpp
+2
-2
src/autotests/HistoryTest.cpp
src/autotests/HistoryTest.cpp
+6
-6
src/history/HistoryFile.cpp
src/history/HistoryFile.cpp
+0
-0
src/history/HistoryFile.h
src/history/HistoryFile.h
+0
-0
src/history/HistoryScroll.cpp
src/history/HistoryScroll.cpp
+0
-0
src/history/HistoryScroll.h
src/history/HistoryScroll.h
+0
-0
src/history/HistoryScrollFile.cpp
src/history/HistoryScrollFile.cpp
+0
-0
src/history/HistoryScrollFile.h
src/history/HistoryScrollFile.h
+0
-0
src/history/HistoryScrollNone.cpp
src/history/HistoryScrollNone.cpp
+0
-0
src/history/HistoryScrollNone.h
src/history/HistoryScrollNone.h
+0
-0
src/history/HistoryType.cpp
src/history/HistoryType.cpp
+0
-0
src/history/HistoryType.h
src/history/HistoryType.h
+0
-0
src/history/HistoryTypeFile.cpp
src/history/HistoryTypeFile.cpp
+0
-0
src/history/HistoryTypeFile.h
src/history/HistoryTypeFile.h
+0
-0
src/history/HistoryTypeNone.cpp
src/history/HistoryTypeNone.cpp
+0
-0
src/history/HistoryTypeNone.h
src/history/HistoryTypeNone.h
+0
-0
src/history/compact/CompactHistoryBlock.cpp
src/history/compact/CompactHistoryBlock.cpp
+0
-0
src/history/compact/CompactHistoryBlock.h
src/history/compact/CompactHistoryBlock.h
+0
-0
src/history/compact/CompactHistoryBlockList.cpp
src/history/compact/CompactHistoryBlockList.cpp
+0
-0
src/history/compact/CompactHistoryBlockList.h
src/history/compact/CompactHistoryBlockList.h
+0
-0
src/history/compact/CompactHistoryLine.cpp
src/history/compact/CompactHistoryLine.cpp
+0
-0
src/history/compact/CompactHistoryLine.h
src/history/compact/CompactHistoryLine.h
+0
-0
src/history/compact/CompactHistoryScroll.cpp
src/history/compact/CompactHistoryScroll.cpp
+0
-0
src/history/compact/CompactHistoryScroll.h
src/history/compact/CompactHistoryScroll.h
+2
-2
src/history/compact/CompactHistoryType.cpp
src/history/compact/CompactHistoryType.cpp
+0
-0
src/history/compact/CompactHistoryType.h
src/history/compact/CompactHistoryType.h
+1
-1
src/session/Session.cpp
src/session/Session.cpp
+3
-3
src/session/SessionController.cpp
src/session/SessionController.cpp
+4
-4
src/session/SessionManager.cpp
src/session/SessionManager.cpp
+3
-3
No files found.
src/CMakeLists.txt
View file @
fdad2645
...
...
@@ -72,19 +72,19 @@ set(konsoleprivate_SRCS ${sessionadaptors_SRCS}
filterHotSpots/TerminalImageFilterChain.cpp
filterHotSpots/UrlFilter.cpp
filterHotSpots/UrlFilterHotspot.cpp
HistoryFile.cpp
HistoryScroll.cpp
HistoryScrollFile.cpp
HistoryScrollNone.cpp
history/
HistoryFile.cpp
history/
HistoryScroll.cpp
history/
HistoryScrollFile.cpp
history/
HistoryScrollNone.cpp
CharacterFormat.cpp
CompactHistoryBlock.cpp
CompactHistoryBlockList.cpp
CompactHistoryLine.cpp
CompactHistoryScroll.cpp
HistoryType.cpp
HistoryTypeNone.cpp
HistoryTypeFile.cpp
CompactHistoryType.cpp
history/compact/
CompactHistoryBlock.cpp
history/compact/
CompactHistoryBlockList.cpp
history/compact/
CompactHistoryLine.cpp
history/compact/
CompactHistoryScroll.cpp
history/
HistoryType.cpp
history/
HistoryTypeNone.cpp
history/
HistoryTypeFile.cpp
history/compact/
CompactHistoryType.cpp
HistorySizeDialog.cpp
widgets/HistorySizeWidget.cpp
widgets/IncrementalSearchBar.cpp
...
...
src/Screen.cpp
View file @
fdad2645
...
...
@@ -28,8 +28,8 @@
// Konsole
#include "TerminalCharacterDecoder.h"
#include "HistoryType.h"
#include "HistoryScrollNone.h"
#include "
history/
HistoryType.h"
#include "
history/
HistoryScrollNone.h"
#include "ExtendedCharTable.h"
using
namespace
Konsole
;
...
...
src/autotests/HistoryTest.cpp
View file @
fdad2645
...
...
@@ -25,12 +25,12 @@
// Konsole
#include "../session/Session.h"
#include "../Emulation.h"
#include "../HistoryTypeNone.h"
#include "../HistoryTypeFile.h"
#include "../CompactHistoryType.h"
#include "../HistoryScrollNone.h"
#include "../HistoryScrollFile.h"
#include "../CompactHistoryScroll.h"
#include "../
history/
HistoryTypeNone.h"
#include "../
history/
HistoryTypeFile.h"
#include "../
history/compact/
CompactHistoryType.h"
#include "../
history/
HistoryScrollNone.h"
#include "../
history/
HistoryScrollFile.h"
#include "../
history/compact/
CompactHistoryScroll.h"
using
namespace
Konsole
;
...
...
src/HistoryFile.cpp
→
src/
history/
HistoryFile.cpp
View file @
fdad2645
File moved
src/HistoryFile.h
→
src/
history/
HistoryFile.h
View file @
fdad2645
File moved
src/HistoryScroll.cpp
→
src/
history/
HistoryScroll.cpp
View file @
fdad2645
File moved
src/HistoryScroll.h
→
src/
history/
HistoryScroll.h
View file @
fdad2645
File moved
src/HistoryScrollFile.cpp
→
src/
history/
HistoryScrollFile.cpp
View file @
fdad2645
File moved
src/HistoryScrollFile.h
→
src/
history/
HistoryScrollFile.h
View file @
fdad2645
File moved
src/HistoryScrollNone.cpp
→
src/
history/
HistoryScrollNone.cpp
View file @
fdad2645
File moved
src/HistoryScrollNone.h
→
src/
history/
HistoryScrollNone.h
View file @
fdad2645
File moved
src/HistoryType.cpp
→
src/
history/
HistoryType.cpp
View file @
fdad2645
File moved
src/HistoryType.h
→
src/
history/
HistoryType.h
View file @
fdad2645
File moved
src/HistoryTypeFile.cpp
→
src/
history/
HistoryTypeFile.cpp
View file @
fdad2645
File moved
src/HistoryTypeFile.h
→
src/
history/
HistoryTypeFile.h
View file @
fdad2645
File moved
src/HistoryTypeNone.cpp
→
src/
history/
HistoryTypeNone.cpp
View file @
fdad2645
File moved
src/HistoryTypeNone.h
→
src/
history/
HistoryTypeNone.h
View file @
fdad2645
File moved
src/CompactHistoryBlock.cpp
→
src/
history/compact/
CompactHistoryBlock.cpp
View file @
fdad2645
File moved
src/CompactHistoryBlock.h
→
src/
history/compact/
CompactHistoryBlock.h
View file @
fdad2645
File moved
src/CompactHistoryBlockList.cpp
→
src/
history/compact/
CompactHistoryBlockList.cpp
View file @
fdad2645
File moved
src/CompactHistoryBlockList.h
→
src/
history/compact/
CompactHistoryBlockList.h
View file @
fdad2645
File moved
src/CompactHistoryLine.cpp
→
src/
history/compact/
CompactHistoryLine.cpp
View file @
fdad2645
File moved
src/CompactHistoryLine.h
→
src/
history/compact/
CompactHistoryLine.h
View file @
fdad2645
File moved
src/CompactHistoryScroll.cpp
→
src/
history/compact/
CompactHistoryScroll.cpp
View file @
fdad2645
File moved
src/CompactHistoryScroll.h
→
src/
history/compact/
CompactHistoryScroll.h
View file @
fdad2645
...
...
@@ -23,8 +23,8 @@
#include "konsoleprivate_export.h"
#include "HistoryScroll.h"
#include "CompactHistoryLine.h"
#include "
history/
HistoryScroll.h"
#include "
history/compact/
CompactHistoryLine.h"
namespace
Konsole
{
...
...
src/CompactHistoryType.cpp
→
src/
history/compact/
CompactHistoryType.cpp
View file @
fdad2645
File moved
src/CompactHistoryType.h
→
src/
history/compact/
CompactHistoryType.h
View file @
fdad2645
...
...
@@ -21,7 +21,7 @@
#ifndef COMPACTHISTORYTYPE_H
#define COMPACTHISTORYTYPE_H
#include "HistoryType.h"
#include "
history/
HistoryType.h"
#include "konsoleprivate_export.h"
namespace
Konsole
...
...
src/session/Session.cpp
View file @
fdad2645
...
...
@@ -55,9 +55,9 @@
#include "ShellCommand.h"
#include "Vt102Emulation.h"
#include "ZModemDialog.h"
#include "HistoryTypeNone.h"
#include "HistoryTypeFile.h"
#include "CompactHistoryType.h"
#include "
history/
HistoryTypeNone.h"
#include "
history/
HistoryTypeFile.h"
#include "
history/compact/
CompactHistoryType.h"
#include "konsoledebug.h"
#include "session/SessionManager.h"
#include "ProfileManager.h"
...
...
src/session/SessionController.cpp
View file @
fdad2645
...
...
@@ -68,10 +68,10 @@
#include "filterHotSpots/HotSpot.h"
#include "filterHotSpots/RegExpFilter.h"
#include "filterHotSpots/UrlFilter.h"
#include "HistoryType.h"
#include "HistoryTypeNone.h"
#include "HistoryTypeFile.h"
#include "CompactHistoryType.h"
#include "
history/
HistoryType.h"
#include "
history/
HistoryTypeNone.h"
#include "
history/
HistoryTypeFile.h"
#include "
history/compact/
CompactHistoryType.h"
#include "HistorySizeDialog.h"
#include "widgets/IncrementalSearchBar.h"
#include "RenameTabDialog.h"
...
...
src/session/SessionManager.cpp
View file @
fdad2645
...
...
@@ -35,9 +35,9 @@
// Konsole
#include "session/Session.h"
#include "ProfileManager.h"
#include "HistoryTypeNone.h"
#include "HistoryTypeFile.h"
#include "CompactHistoryType.h"
#include "
history/
HistoryTypeNone.h"
#include "
history/
HistoryTypeFile.h"
#include "
history/compact/
CompactHistoryType.h"
#include "Enumeration.h"
#include "widgets/TerminalDisplay.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment