Fixed typedef-related warnings from compiler.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/2/head
Michele Calgaro 6 jaren geleden
bovenliggende df8dd27940
commit 2898366002
Getekend door: MicheleC
GPG sleutel-ID: 2A75B7CA8ADED5CF

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

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

Laden…
Annuleren
Opslaan