summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-10-25 18:01:18 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-10-25 18:01:18 (GMT)
commit9cfb5e58a6a55b2f87027e7b378001f3f3768423 (patch)
tree44320dbd01bfb4bd15e45fc478d0713ae353a60e /addon
parentef91bacb7a69bbf7bccb4a864698cc003aabac66 (diff)
downloadDoxygen-9cfb5e58a6a55b2f87027e7b378001f3f3768423.zip
Doxygen-9cfb5e58a6a55b2f87027e7b378001f3f3768423.tar.gz
Doxygen-9cfb5e58a6a55b2f87027e7b378001f3f3768423.tar.bz2
Incorrect handling of string with spaces and no quotes
Correcting some (Cygwin) compilation warnings / errors
Diffstat (limited to 'addon')
-rw-r--r--addon/doxywizard/config_doxyw.l2
-rwxr-xr-xaddon/doxywizard/doxywizard.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/addon/doxywizard/config_doxyw.l b/addon/doxywizard/config_doxyw.l
index db7b05a..ccebfc4 100644
--- a/addon/doxywizard/config_doxyw.l
+++ b/addon/doxywizard/config_doxyw.l
@@ -80,7 +80,7 @@ static const char *stateToString(int state);
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) result=yyread(buf,max_size);
-static yy_size_t yyread(char *buf,int maxSize)
+static yy_size_t yyread(char *buf,yy_size_t maxSize)
{
// no file included
if (g_includeStack.isEmpty())
diff --git a/addon/doxywizard/doxywizard.h b/addon/doxywizard/doxywizard.h
index eadd51b..5e9254c 100755
--- a/addon/doxywizard/doxywizard.h
+++ b/addon/doxywizard/doxywizard.h
@@ -42,9 +42,9 @@ class MainWindow : public QMainWindow
QString configFileName() const { return m_fileName; }
void updateTitle();
// access routines for outputLog pane
- void MainWindow::outputLogStart();
- void MainWindow::outputLogText(QString text);
- void MainWindow::outputLogFinish();
+ void outputLogStart();
+ void outputLogText(QString text);
+ void outputLogFinish();
public slots:
void manual();