Hi,
Well, if you don't want users to be able to add more than 1 item of a product to their wishlist when the product doesn't have any stock left, you would need to do some view overrides via the menu Display>Views.
For the products listing, you can edit the view file add_to_cart_ajax.php
There, add the line:
if(!$add_to_cart) { $this->quantityLayout = 'show_simple'; }
after the line:
if($display_quantity_field && (!$global_on_listing || !$has_required_fields )) {
And you can add the same code after the line:
if(($add_to_cart || $add_to_wishlist) && $display_quantity_field) {
in the file quantity.php which is used for the product details page.