[Tex/LaTex] TeX Gyre Pagella and itemize environment gives font warnings

fontspdftexsymbolswarnings

\documentclass{article}
\usepackage{tgpagella}

\begin{document}
\begin{itemize}
    \item test1
    \item test2
    \item test3
\end{itemize}
\end{document}

Compiling the above minimal LaTeX file with a fresh installation of TeX Live 2011 on Linux gives the following warnings:

LaTeX Font Warning: Font shape `OMS/qpl/m/n' undefined
(Font)              using `OMS/cmsy/m/n' instead
(Font)              for symbol `textbullet' on input line 7.
...
LaTeX Font Warning: Some font shapes were not available, defaults substituted.

It works absolutely fine with the default Computer Modern fonts.

It seems like this is just a problem with tgpagella not defining its own bullet symbols. What is the best way to deal with this sort of warning? Can it be safely ignored and is there a way to stop it appearing every time I compile (without disabling other warnings)? It's especially annoying when using Vim because the focus moves to the error window every time I compile the document!

Best Answer

Load the textcomp package.

\documentclass{article}

\usepackage{textcomp}
\usepackage{tgpagella}

\begin{document}
\begin{itemize}
    \item test1
    \item test2
    \item test3
\end{itemize}
\end{document}