GUI: AStyle
This commit is contained in:
parent
8bd1effa21
commit
d478952af2
|
@ -115,7 +115,7 @@ void AbstractTableView::slot_updateShortcuts()
|
|||
updateShortcuts();
|
||||
}
|
||||
|
||||
void AbstractTableView::loadColumnFromConfig(const QString& viewName)
|
||||
void AbstractTableView::loadColumnFromConfig(const QString & viewName)
|
||||
{
|
||||
int columnCount = getColumnCount();
|
||||
for(int i = 0; i < columnCount; i++)
|
||||
|
@ -147,7 +147,7 @@ void AbstractTableView::saveColumnToConfig()
|
|||
}
|
||||
}
|
||||
|
||||
void AbstractTableView::setupColumnConfigDefaultValue(QMap<QString, duint>& map, const QString& viewName, int columnCount)
|
||||
void AbstractTableView::setupColumnConfigDefaultValue(QMap<QString, duint> & map, const QString & viewName, int columnCount)
|
||||
{
|
||||
for(int i = 0; i < columnCount; i++)
|
||||
{
|
||||
|
|
|
@ -109,9 +109,9 @@ public:
|
|||
void setColumnHidden(int col, bool hidden);
|
||||
|
||||
// UI customization
|
||||
void loadColumnFromConfig(const QString& viewName);
|
||||
void loadColumnFromConfig(const QString & viewName);
|
||||
void saveColumnToConfig();
|
||||
static void setupColumnConfigDefaultValue(QMap<QString, duint>& map, const QString& viewName, int columnCount);
|
||||
static void setupColumnConfigDefaultValue(QMap<QString, duint> & map, const QString & viewName, int columnCount);
|
||||
|
||||
// Content drawing control
|
||||
bool getDrawDebugOnly();
|
||||
|
|
|
@ -8,7 +8,7 @@ void SetApplicationIcon(WId winId)
|
|||
DestroyIcon(hIcon);
|
||||
}
|
||||
|
||||
QByteArray& ByteReverse(QByteArray& array)
|
||||
QByteArray & ByteReverse(QByteArray & array)
|
||||
{
|
||||
int length = array.length();
|
||||
for(int i = 0; i < length / 2; i++)
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
#include <QWidget>
|
||||
|
||||
void SetApplicationIcon(WId winId);
|
||||
QByteArray& ByteReverse(QByteArray& array);
|
||||
QByteArray & ByteReverse(QByteArray & array);
|
||||
|
||||
#endif // MISCUTIL_H
|
||||
|
|
Loading…
Reference in New Issue