Форматирование кода
This commit is contained in:
parent
281ec272d8
commit
68315ce08d
@ -2,10 +2,10 @@
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class FileSignalHandler : public QObject {
|
||||
class FileSignalHandler : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
Q_SLOT void process() {};
|
||||
Q_SLOT void process() {}
|
||||
};
|
||||
|
||||
|
||||
|
@ -1,15 +1,15 @@
|
||||
#include "cmlib_private_config.hpp"
|
||||
#include "fsh.hpp"
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QDebug>
|
||||
#include <QFile>
|
||||
#include "fsh.hpp"
|
||||
|
||||
|
||||
// function args by ref
|
||||
int qStringToInt( QString s )
|
||||
{
|
||||
return s.toInt();
|
||||
return( s.toInt() );
|
||||
}
|
||||
|
||||
|
||||
@ -50,4 +50,5 @@ int main( int argc, char** argv )
|
||||
QObject::connect( &f, SIGNAL(aboutToClose()), &fsh, SLOT(process()) );
|
||||
|
||||
return( 0 );
|
||||
}
|
||||
} // main
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user