mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 21:33:43 +00:00
fix for sunWpro compiler. forgot a return in my haste. thanks to tor@cs.brown.edu for pointing this out.
This commit is contained in:
parent
0eb5b5e7fb
commit
c735d4ec34
@ -54,6 +54,8 @@ nsScreenGtk :: GetRect(PRInt32 *outLeft, PRInt32 *outTop, PRInt32 *outWidth, PRI
|
||||
*outWidth = gdk_screen_width();
|
||||
*outHeight = gdk_screen_height();
|
||||
|
||||
return NS_OK;
|
||||
|
||||
} // GetRect
|
||||
|
||||
|
||||
@ -65,6 +67,8 @@ nsScreenGtk :: GetAvailRect(PRInt32 *outLeft, PRInt32 *outTop, PRInt32 *outWidth
|
||||
*outWidth = gdk_screen_width();
|
||||
*outHeight = gdk_screen_height();
|
||||
|
||||
return NS_OK;
|
||||
|
||||
} // GetAvailRect
|
||||
|
||||
|
||||
|
@ -54,6 +54,8 @@ nsScreenGtk :: GetRect(PRInt32 *outLeft, PRInt32 *outTop, PRInt32 *outWidth, PRI
|
||||
*outWidth = gdk_screen_width();
|
||||
*outHeight = gdk_screen_height();
|
||||
|
||||
return NS_OK;
|
||||
|
||||
} // GetRect
|
||||
|
||||
|
||||
@ -65,6 +67,8 @@ nsScreenGtk :: GetAvailRect(PRInt32 *outLeft, PRInt32 *outTop, PRInt32 *outWidth
|
||||
*outWidth = gdk_screen_width();
|
||||
*outHeight = gdk_screen_height();
|
||||
|
||||
return NS_OK;
|
||||
|
||||
} // GetAvailRect
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user