mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
Remove YACReader::SearchModifiers
They are no longer used
This commit is contained in:
@ -145,7 +145,7 @@
|
||||
{
|
||||
NSTextField *textField = [notification object];
|
||||
NSLog(@"%@", [textField stringValue]);
|
||||
Q_EMIT mylineedit->filterChanged(YACReader::NoModifiers, QString::fromNSString([textField stringValue]));
|
||||
Q_EMIT mylineedit->filterChanged(QString::fromNSString([textField stringValue]));
|
||||
}
|
||||
|
||||
@end
|
||||
@ -336,7 +336,7 @@ QString YACReaderMacOSXSearchLineEdit::text()
|
||||
void YACReaderMacOSXSearchLineEdit::clear()
|
||||
{
|
||||
[((NSTextField *)nstextfield) setStringValue:@""];
|
||||
emit filterChanged(YACReader::NoModifiers, "");
|
||||
emit filterChanged("");
|
||||
}
|
||||
|
||||
void YACReaderMacOSXSearchLineEdit::clearText()
|
||||
|
Reference in New Issue
Block a user