1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-30 19:46:56 +00:00
transmission/macosx/InfoTabMatrix.mm
Mike Gelfand b7ba261359
Port macOS client to C++ (#1830)
* Rename all .m (Obj-C) files to .mm (Obj-C++)

* Fix build in Obj-C++ mode

* Fix Xcode build
2021-09-24 07:56:57 -05:00

22 lines
397 B
Text

//
// InfoTabMatrix.m
// Transmission
//
// Created by Mitchell Livingston on 12/21/18.
// Copyright © 2018 The Transmission Project. All rights reserved.
//
#import "InfoTabMatrix.h"
#import "InfoTabButtonCell.h"
@implementation InfoTabMatrix
- (void)viewDidChangeEffectiveAppearance;
{
for (InfoTabButtonCell* cell in self.cells)
{
[cell reloadAppearance];
}
}
@end