]> git.lyx.org Git - features.git/commitdiff
Some more coding style fixes
authorEnrico Forestieri <forenr@lyx.org>
Sat, 12 Sep 2009 16:20:37 +0000 (16:20 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Sat, 12 Sep 2009 16:20:37 +0000 (16:20 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31374 a592a061-630c-0410-9148-cb99ea01b6c8

development/lyxserver/server_monitor.cpp

index d22f703cf230bd2f528d8af3ca792541ee66e159..83d6303586925666210f1ff5fb32cdf4ee56992b 100644 (file)
@@ -87,7 +87,7 @@ LyXServerMonitor::LyXServerMonitor()
        connect(submitCommandPB, SIGNAL(clicked()), this, SLOT(submitCommand()));
        connect(donePB, SIGNAL(clicked()), this, SLOT(reject()));
 
-       QVBoxLayout *mainLayout = new QVBoxLayout;
+       QVBoxLayout * mainLayout = new QVBoxLayout;
        mainLayout->addWidget(gridGB);
        mainLayout->addWidget(horizontalGB);
        setLayout(mainLayout);
@@ -338,7 +338,7 @@ void LyXServerMonitor::closePipes()
                                buffer[BUFSIZE - 1] = '\0';
                                ::write(pipein, buffer, strlen(buffer));
                        }
-                       /* Say goodbye */
+                       // Say goodbye
                        snprintf(buffer, BUFSIZE - 1, "LYXSRV:%s:bye\n",
                                 clientname.toUtf8().constData());
                        buffer[BUFSIZE - 1] = '\0';
@@ -377,7 +377,7 @@ void LyXServerMonitor::submitCommand()
 }
 
 
-int main(int argc, char *argv[])
+int main(int argc, char * argv[])
 {
        QApplication app(argc, argv);
        LyXServerMonitor dialog;