X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/94b95494e61dc6403e20c3a3898d37aa21e1e1c3..c954dea7c1b814d66b8c31d04fa70a1bbbcce71e:/SL/Controller/TopQuickSearch/CustomerVendor.pm diff --git a/SL/Controller/TopQuickSearch/CustomerVendor.pm b/SL/Controller/TopQuickSearch/CustomerVendor.pm index 16ab8632f..f337d10a1 100644 --- a/SL/Controller/TopQuickSearch/CustomerVendor.pm +++ b/SL/Controller/TopQuickSearch/CustomerVendor.pm @@ -14,11 +14,11 @@ use Rose::Object::MakeMethods::Generic ( # nope. this is only for subclassing sub auth { 'NOT ALLOWED' } -sub name { ... } +sub name { die 'must be overwritten' } -sub description_config { ... } +sub description_config { die 'must be overwritten' } -sub description_field { ... } +sub description_field { die 'must be overwritten' } sub query_autocomplete { my ($self) = @_; @@ -98,15 +98,15 @@ sub init_models { } sub type { - ... + die 'must be overwritten' } sub cv { - ... + die 'must be overwritten' } sub model { - ... + die 'must be overwritten' }; 1;