Unindent contents of anonymous namespaces

No real changes, only formatting.
This commit is contained in:
Vadim Zeitlin
2019-02-02 15:50:13 +01:00
parent 111a37fd73
commit 0145916fb6
2 changed files with 121 additions and 117 deletions

View File

@@ -17,6 +17,7 @@
namespace namespace
{ {
wxString DataFormatIdToMimeType(wxDataFormatId formatId) wxString DataFormatIdToMimeType(wxDataFormatId formatId)
{ {
switch ( formatId ) switch ( formatId )
@@ -45,7 +46,8 @@ namespace
return ""; return "";
} }
} }
}
} // anonymous namespace
wxDataFormat::wxDataFormat(wxDataFormatId formatId) wxDataFormat::wxDataFormat(wxDataFormatId formatId)
{ {

View File

@@ -23,6 +23,7 @@
namespace namespace
{ {
wxDragResult DropActionToDragResult(Qt::DropAction action) wxDragResult DropActionToDragResult(Qt::DropAction action)
{ {
switch ( action ) switch ( action )
@@ -117,7 +118,8 @@ namespace
private: private:
const QMimeData*& m_targetMimeData; const QMimeData*& m_targetMimeData;
}; };
}
} // anonymous namespace
class wxDropTarget::Impl : public QObject class wxDropTarget::Impl : public QObject
{ {