Fixed typedef-related warnings from compiler.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2898366002)
r14.0.x
Michele Calgaro 6 years ago
parent 96a944e73c
commit edcd940e49
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -21,7 +21,7 @@
#include <tqwidget.h> #include <tqwidget.h>
#include <kurl.h> #include <kurl.h>
typedef struct RenamedList struct RenamedList
{ {
KURL src; KURL src;
KURL dst; KURL dst;

@ -44,7 +44,7 @@ enum {
COPY, MOVE, RENAME, PREVIEW, LINK COPY, MOVE, RENAME, PREVIEW, LINK
}; };
typedef struct fileentry { struct fileentry {
TQString name; // filename TQString name; // filename
TQString directory; // directory TQString directory; // directory
TQString extension; // extension TQString extension; // extension
@ -52,7 +52,7 @@ typedef struct fileentry {
KURL url; KURL url;
}; };
typedef struct data { struct data {
fileentry src; fileentry src;
fileentry dst; fileentry dst;
@ -64,18 +64,18 @@ typedef struct data {
* in the preview list view are * in the preview list view are
* stored here. * stored here.
*/ */
typedef struct manualchanges { struct manualchanges {
KURL url; // input filename KURL url; // input filename
TQString user; // name the user wants TQString user; // name the user wants
}; };
typedef struct replacestrings { struct replacestrings {
TQString find; // Text to replace TQString find; // Text to replace
TQString replace; // Replace with TQString replace; // Replace with
bool reg; // is it a reg expression ? bool reg; // is it a reg expression ?
}; };
typedef struct tCounterValues { struct tCounterValues {
int value; // current value of this counter int value; // current value of this counter
int start; // start value of this counter (for findResetCounter) int start; // start value of this counter (for findResetCounter)
int step; // stepping value of this counter; int step; // stepping value of this counter;

Loading…
Cancel
Save