KeepEmptyLinesAtTheStartOfBlocks: false (#6726)
This commit is contained in:
parent
86498a71e5
commit
9ddf609d50
|
@ -55,7 +55,7 @@ ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||||||
ConstructorInitializerIndentWidth: 4
|
ConstructorInitializerIndentWidth: 4
|
||||||
FixNamespaceComments: true
|
FixNamespaceComments: true
|
||||||
IndentGotoLabels: false
|
IndentGotoLabels: false
|
||||||
KeepEmptyLinesAtTheStartOfBlocks: true
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||||
QualifierAlignment: Right
|
QualifierAlignment: Right
|
||||||
SortUsingDeclarations: true
|
SortUsingDeclarations: true
|
||||||
SpaceAfterTemplateKeyword: false
|
SpaceAfterTemplateKeyword: false
|
||||||
|
|
|
@ -386,7 +386,6 @@ TorrentFileChooserDialog::TorrentFileChooserDialog(Gtk::Window& parent, Glib::Re
|
||||||
|
|
||||||
void TorrentUrlChooserDialog::onOpenURLResponse(int response, Gtk::Entry const& entry, Glib::RefPtr<Session> const& core)
|
void TorrentUrlChooserDialog::onOpenURLResponse(int response, Gtk::Entry const& entry, Glib::RefPtr<Session> const& core)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (response == TR_GTK_RESPONSE_TYPE(CANCEL))
|
if (response == TR_GTK_RESPONSE_TYPE(CANCEL))
|
||||||
{
|
{
|
||||||
close();
|
close();
|
||||||
|
|
|
@ -347,7 +347,6 @@ public:
|
||||||
tor_in->swarm_is_all_seeds_.observe([this](tr_torrent* /*tor*/) { on_swarm_is_all_seeds(); }),
|
tor_in->swarm_is_all_seeds_.observe([this](tr_torrent* /*tor*/) { on_swarm_is_all_seeds(); }),
|
||||||
} }
|
} }
|
||||||
{
|
{
|
||||||
|
|
||||||
rebuild_webseeds();
|
rebuild_webseeds();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,6 @@ using namespace std::literals;
|
||||||
// the dht library needs us to implement these:
|
// the dht library needs us to implement these:
|
||||||
extern "C"
|
extern "C"
|
||||||
{
|
{
|
||||||
|
|
||||||
// This function should return true when a node is blacklisted.
|
// This function should return true when a node is blacklisted.
|
||||||
// We don't support using a blacklist with the DHT in Transmission,
|
// We don't support using a blacklist with the DHT in Transmission,
|
||||||
// since massive (ab)use of this feature could harm the DHT. However,
|
// since massive (ab)use of this feature could harm the DHT. However,
|
||||||
|
|
Loading…
Reference in New Issue