diff options
author | Saturneric <[email protected]> | 2022-01-12 03:04:46 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-12 03:04:46 +0000 |
commit | d24f0251e8c8964bf42f4bf028023f02f4e96933 (patch) | |
tree | b0d1fe016143274a66898ec6ca0913115400c033 /src/ui/thread/FileReadThread.h | |
parent | <refactor>(ui): Adjust src/ui/function to src/ui/thread (diff) | |
download | GpgFrontend-d24f0251e8c8964bf42f4bf028023f02f4e96933.tar.gz GpgFrontend-d24f0251e8c8964bf42f4bf028023f02f4e96933.zip |
<refactor, feat>(ui): Text editor improvements.
1. Add binary display mode
2. Add information bar
3. Added character code recognition function.
4. Identify text encoding and line breaks
5. Count the number of characters
6. Code reconstruction
Diffstat (limited to '')
-rw-r--r-- | src/ui/thread/FileReadThread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/thread/FileReadThread.h b/src/ui/thread/FileReadThread.h index 46ed6cbc..65982848 100644 --- a/src/ui/thread/FileReadThread.h +++ b/src/ui/thread/FileReadThread.h @@ -37,7 +37,7 @@ class FileReadThread : public QThread { signals: - void sendReadBlock(const QString& block); + void sendReadBlock(const std::string& block); void readDone(); |