1
0
ミラー元 https://github.com/arsenetar/dupeguru.git 前回の同期 2025-09-11 17:58:17 +00:00

Renamed cocoa/base/ResultWindow to ResultWindowBase to avoid ambiguities in the result_winodw cocoa UI script.

--HG--
rename : cocoa/base/ResultWindow.h => cocoa/base/ResultWindowBase.h
rename : cocoa/base/ResultWindow.m => cocoa/base/ResultWindowBase.m
このコミットが含まれているのは:
Virgil Dupras 2012-08-30 16:08:21 -04:00
コミット dff141e800
6個のファイルの変更7行の追加7行の削除

ファイルの表示

@ -6,7 +6,7 @@ which should be included with this package. The terms are also available at
http://www.hardcoded.net/licenses/bsd_license http://www.hardcoded.net/licenses/bsd_license
*/ */
#import "ResultWindow.h" #import "ResultWindowBase.h"
#import "ResultWindow_UI.h" #import "ResultWindow_UI.h"
#import "Dialogs.h" #import "Dialogs.h"
#import "ProgressController.h" #import "ProgressController.h"
@ -29,7 +29,7 @@ http://www.hardcoded.net/licenses/bsd_license
app = aApp; app = aApp;
model = [app model]; model = [app model];
[self setWindow:createResultWindow_UI(self)]; [self setWindow:createResultWindow_UI(self)];
[[self window] setTitle:fmt(@"%@ Results", [model appName])]; [[self window] setTitle:fmt(NSLocalizedString(@"%@ Results", @""), [model appName])];
/* Put a cute iTunes-like bottom bar */ /* Put a cute iTunes-like bottom bar */
[[self window] setContentBorderThickness:28 forEdge:NSMinYEdge]; [[self window] setContentBorderThickness:28 forEdge:NSMinYEdge];
table = [[ResultTable alloc] initWithPyRef:[model resultTable] view:matches]; table = [[ResultTable alloc] initWithPyRef:[model resultTable] view:matches];

ファイルの表示

@ -1,5 +1,5 @@
ownerclass = 'ResultWindow' ownerclass = 'ResultWindowBase'
ownerimport = 'ResultWindow.h' ownerimport = 'ResultWindowBase.h'
result = Window(557, 400, "dupeGuru Results") result = Window(557, 400, "dupeGuru Results")
toolbar = result.createToolbar('ResultsToolbar') toolbar = result.createToolbar('ResultsToolbar')

ファイルの表示

@ -7,7 +7,7 @@ http://www.hardcoded.net/licenses/bsd_license
*/ */
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#import "../base/ResultWindow.h" #import "ResultWindowBase.h"
@interface ResultWindow : ResultWindowBase {} @interface ResultWindow : ResultWindowBase {}
- (void)removeDeadTracks; - (void)removeDeadTracks;

ファイルの表示

@ -7,7 +7,7 @@ http://www.hardcoded.net/licenses/bsd_license
*/ */
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#import "../base/ResultWindow.h" #import "ResultWindowBase.h"
@interface ResultWindow : ResultWindowBase {} @interface ResultWindow : ResultWindowBase {}
- (void)clearPictureCache; - (void)clearPictureCache;

ファイルの表示

@ -7,7 +7,7 @@ http://www.hardcoded.net/licenses/bsd_license
*/ */
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#import "../base/ResultWindow.h" #import "ResultWindowBase.h"
@interface ResultWindow : ResultWindowBase {} @interface ResultWindow : ResultWindowBase {}
@end @end