mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-13 14:27:08 +03:00
Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#ifndef DFBrowser_SearchItemInfo_H
|
||||
#define DFBrowser_SearchItemInfo_H
|
||||
@@ -27,15 +27,19 @@
|
||||
class DFBrowser_SearchItemInfo
|
||||
{
|
||||
public:
|
||||
|
||||
//! Constructor
|
||||
DFBrowser_SearchItemInfo() {}
|
||||
|
||||
//! Constructor
|
||||
DFBrowser_SearchItemInfo (const QVariant& theIcon, const QString& theName,
|
||||
const QStringList& thePath, const QString& theSeparator)
|
||||
: myIcon (theIcon), myPath (thePath)
|
||||
{ myPathUnited = QString ("%1 \n%2").arg (theName).arg (myPath.join (theSeparator)); }
|
||||
DFBrowser_SearchItemInfo(const QVariant& theIcon,
|
||||
const QString& theName,
|
||||
const QStringList& thePath,
|
||||
const QString& theSeparator)
|
||||
: myIcon(theIcon),
|
||||
myPath(thePath)
|
||||
{
|
||||
myPathUnited = QString("%1 \n%2").arg(theName).arg(myPath.join(theSeparator));
|
||||
}
|
||||
|
||||
//! Destructor
|
||||
virtual ~DFBrowser_SearchItemInfo() {}
|
||||
@@ -50,10 +54,9 @@ public:
|
||||
const QString& PathUnited() const { return myPathUnited; }
|
||||
|
||||
private:
|
||||
|
||||
QVariant myIcon; //!< item icon
|
||||
QStringList myPath; //!< item path
|
||||
QString myPathUnited; //!< item name and item path
|
||||
QVariant myIcon; //!< item icon
|
||||
QStringList myPath; //!< item path
|
||||
QString myPathUnited; //!< item name and item path
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user