diff options
author | Michele Calgaro <[email protected]> | 2018-08-23 14:58:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-08-23 15:00:05 +0900 |
commit | 61aeadb7684811bcaa92b01e408b029bffa9bb0a (patch) | |
tree | 095fea0db3edbc5774db6bf73743de150433cf88 | |
parent | c95c31bb2222eb38613f1d7151905875c5149c08 (diff) | |
download | k9copy-61aeadb7684811bcaa92b01e408b029bffa9bb0a.tar.gz k9copy-61aeadb7684811bcaa92b01e408b029bffa9bb0a.zip |
Fixed typedef-related warnings from compiler.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit e7baa82a6058c0c68c5ae5edc3f74340178c6d39)
-rwxr-xr-x | libk9copy/k9dvd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk9copy/k9dvd.h b/libk9copy/k9dvd.h index 5371eeb..dfd911a 100755 --- a/libk9copy/k9dvd.h +++ b/libk9copy/k9dvd.h @@ -169,7 +169,7 @@ signals: // Signals void sigTotalText(TQString &text); }; -typedef struct lng { char code[3]; TQString name;}; +struct lng { char code[3]; TQString name;}; #endif |